/* ============================================================ */
/* File Path: /assets/css/main.css */
/* Purpose: Main stylesheet for DESKTOP website styling. */
/* Status: Updated to remove mobile-specific styles. */
/* ============================================================ */

/* ============================================================ */
/* 1. Imported Files */
/* ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import "animate.css";
@import "magnific-popup.css";
@import "swiper-bundle.min.css";
@import "nice-select.css";
@import "odometer.css";

/* ============================================================ */
/* 2. Root Variables */
/* ============================================================ */
:root {
  --body: #ffffff; /* White: #ffffff */
  --white: #ffffff; /* White: #ffffff */
  --theme: #2e0c5e; /* Primary Purple: #2e0c5e */
  --black: #222222; /* Rich Black: #222222 */
  --subtitle: #275c53; /* Dark Green: #275c53 */
  --base: #facc15; /* Grenier's Yellow: #facc15 */
  --pra: #888888; /* Gray: #888888 */
  --footer: #181818; /* Dark Gray: #181818 */
  --border: #cccccc; /* Light Gray: #cccccc */
  --border1: #414141; /* Darker Gray: #414141 */
  --ratting: #ff8000; /* Orange: #ff8000 */
}

/* ============================================================ */
/* 3. Global & Typography */
/* ============================================================ */
body {
  color: var(--white); /* White: #ffffff */
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  background-color: var(--body); /* White: #ffffff */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black); /* Rich Black: #222222 */
  font-family: "DM Sans", sans-serif;
  text-transform: capitalize;
}

h1 {
  font-size: 68px;
  font-weight: 600;
  line-height: 120%;
}

h2 {
  font-size: 40px;
  line-height: 140%;
  font-weight: 500;
}

h3 {
  font-size: 32px;
  line-height: 120%;
  font-weight: 600;
}

h4 {
  font-size: 24px;
  line-height: 130%;
  font-weight: 600;
}

h5 {
  font-size: 20px;
  line-height: 130%;
  font-weight: 600;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
}

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

a {
  text-decoration: none;
  text-transform: capitalize;
  margin: 0;
  color: var(--black); /* Rich Black: #222222 */
  font-family: "DM Sans", sans-serif;
  transition: all 0.3s;
}

a:hover {
  text-decoration: none;
  color: var(--base); /* Grenier's Yellow: #facc15 */
}

input:focus {
  color: var(--white); /* White: #ffffff */
  outline: none;
}

input {
  color: var(--white); /* White: #ffffff */
}

p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
  color: var(--pra); /* Gray: #888888 */
  font-family: "DM Sans", sans-serif;
}

/* ============================================================ */
/* 4. Helper Classes */
/* ============================================================ */
.fz-14 {
  font-size: 14px;
}
.fz-16 {
  font-size: 16px;
}
.fz-18 {
  font-size: 18px;
}
.fz-20 {
  font-size: 20px;
}
.fz-24 {
  font-size: 24px;
}
.fz-26 {
  font-size: 26px;
}
.fz-30 {
  font-size: 30px;
}
.fz-32 {
  font-size: 32px;
}
.fz-38 {
  font-size: 38px;
}
.ifz32 {
  font-size: 32px;
}
.fw-400 {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.d1 {
  font-size: 80px;
  line-height: 150%;
  font-weight: 600;
  display: block;
  font-family: "DM Sans", sans-serif;
}
.d2 {
  font-size: 72px;
  line-height: 150%;
  font-weight: 600;
  display: block;
  font-family: "DM Sans", sans-serif;
}
.d3 {
  font-size: 64px;
  line-height: 150%;
  font-weight: 600;
  display: block;
  font-family: "DM Sans", sans-serif;
}
.d4 {
  font-size: 56px;
  line-height: 150%;
  font-weight: 600;
  display: block;
  font-family: "DM Sans", sans-serif;
}
.pfz-24 {
  font-size: 24px;
  line-height: 150%;
}
.pfz-20 {
  font-size: 20px;
  line-height: 150%;
}
.pfz-18 {
  font-size: 18px;
  line-height: 150%;
}
.pfz-16 {
  font-size: 16px;
  line-height: 150%;
}
.pfz-14 {
  font-size: 14px;
  line-height: 150%;
}
.pfz-12 {
  font-size: 12px;
  line-height: 150%;
}
.p-24 {
  padding: 24px;
}
.pt-130 {
  padding-top: 130px;
}
.pb-130 {
  padding-bottom: 130px;
}
.pt-120 {
  padding-top: 120px;
}
.pb-120 {
  padding-bottom: 120px;
}
.pt-110 {
  padding-top: 110px;
}
.pb-110 {
  padding-bottom: 110px;
}
.pt-90 {
  padding-top: 90px;
}
.pb-90 {
  padding-bottom: 90px;
}
.pt-80 {
  padding-top: 80px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pt-60 {
  padding-top: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pt-40 {
  padding-top: 40px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pt-30 {
  padding-top: 30px;
}
.pb-24 {
  padding-bottom: 24px;
}
.pt-24 {
  padding-top: 24px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pt-20 {
  padding-top: 20px;
}
.pb-16 {
  padding-bottom: 16px;
}
.pt-16 {
  padding-top: 16px;
}
.pb-15 {
  padding-bottom: 15px;
}
.pt-15 {
  padding-top: 15px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pt-10 {
  padding-top: 10px;
}
.pb5 {
  padding-bottom: 5px;
}
.pt5 {
  padding-top: 5px;
}
.p-8 {
  padding: 8px;
}
.mt-120 {
  margin-top: 120px;
}
.mb-120 {
  margin-bottom: 120px;
}
.mt-100 {
  margin-top: 100px;
}
.mb-100 {
  margin-bottom: 100px;
}
.mt-80 {
  margin-top: 80px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mt-60 {
  padding-top: 60px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mt-50 {
  padding-top: 52px;
}
.mb-50 {
  margin-bottom: 52px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mt-24 {
  padding-top: 24px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mt-20 {
  padding-top: 20px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mt-15 {
  margin-top: 15px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mt-16 {
  margin-top: 16px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mt-10 {
  margin-top: 10px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mt-8 {
  margin-top: 8px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mt-5 {
  margin-top: 5px;
}
.bodyfont {
  font-family: "DM Sans", sans-serif;
}
.ftext {
  color: var(--ftext);
}
.pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pagination a {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  border: 1px solid var(--base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--base);
  transition: all 0.4s;
}
.pagination a:hover {
  background: var(--base);
  color: var(--white);
  border-color: var(--base);
}
.pagination a:hover i {
  color: var(--white);
}
.pagination a span {
  margin-top: -4px;
}
.pagination a span i {
  font-size: 22px;
  color: var(--base);
}
.pagination .border-added {
  border: none;
  width: 44px;
  height: 44px;
}
.swiper-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 100px;
  transition: 0.6s;
  border: 1px solid var(--theme);
  background-color: var(--white);
  opacity: 1;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
}
.social {
  gap: 12px;
}
.social li a {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 50%;
  border: 1px solid var(--base);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social li a i {
  color: var(--white);
  font-size: 16px;
}
.cmn__icon {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 50%;
  border: 1px solid var(--base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
}
.cmn__icon i {
  color: var(--white);
  font-size: 16px;
}
.section__title {
  max-width: 650px;
  text-align: center;
  margin: 0 auto 50px;
}
.section__title h6 {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--subtitle);
  margin-bottom: 5px;
  text-transform: uppercase;
}
.section__title h2 {
  text-transform: capitalize;
  font-size: 42px;
}
.sub__tittle h6 {
  text-transform: uppercase;
  color: var(--subtitle);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  position: relative;
}
.sub__tittle h6::before {
  position: absolute;
  top: 7px;
  left: 220px;
  width: 60px;
  height: 1px;
  content: "";
  background-color: var(--subtitle);
}
.ralt {
  position: relative;
}
.section__bg {
  background-color: #ffffff;
}
.btnround5 {
  border-radius: 5px !important;
}
.center {
  text-align: center;
  margin: 0 auto;
}
.overhid {
  overflow: hidden;
}
.bgwhite {
  background: var(--white);
}
.boxes1 {
  background: var(--boxes1);
}
.boxes2 {
  background: var(--boxes2);
}
.boxes3 {
  background: var(--boxes3);
}
.boxes4 {
  background: var(--boxes4);
}
.blacks {
  color: #181818 !important;
}
.tcapi {
  text-transform: capitalize;
}
.icolor1 {
  color: var(--icolor1);
}
.icolor2 {
  color: var(--icolor2);
}
.round5 {
  border-radius: 5px;
}
.round10 {
  border-radius: 10px;
}
.round16 {
  border-radius: 16px;
}
.round20 {
  border-radius: 20px;
}
.round50 {
  border-radius: 50%;
}
.shadow1 {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}
.shadow2 {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.04);
}
.shadow6 {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
}
.bor {
  border: 1px solid var(--border);
}
.bor-top {
  border-top: 1px solid var(--border);
}
.bor-left {
  border-left: 1px solid var(--border);
}
.bor-bottom {
  border-bottom: 1px solid var(--border);
}
.bor-right {
  border-right: 1px solid var(--border);
}
.primary-color {
  color: var(--theme) !important;
}
.border-none {
  border: none !important;
}
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--base);
  border-radius: 10px;
}
.twitter {
  background: #1da1f2 !important;
}
.twitch {
  background: rgb(110, 60, 210) !important;
}
.youtube {
  background: rgb(172, 46, 46) !important;
}
.insta {
  background: rgb(207, 93, 93) !important;
}
.lind {
  background: rgb(78, 131, 228) !important;
}
.face {
  background: rgb(27, 114, 244) !important;
}
.primary-hover:hover {
  color: var(--theme);
}

/* ============================================================ */
/* 5. Header Section */
/* ============================================================ */
.header__top {
  padding: 10px 0px;
}
.header__top .header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__top .header__wrapper .info {
  display: flex;
  align-items: center;
}
.header__top .header__wrapper .info li {
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
}
.header__top .header__wrapper .info li:not(:last-child) {
  margin-right: 20px;
}
.header__top .header__wrapper .info li i {
  margin-right: 5px;
  color: var(--theme);
}
.header__top .header__wrapper .social__icon li {
  border: 1px solid var(--theme);
  border-radius: 100%;
  width: 30px;
  height: 30px;
  line-height: 28px;
}
.header__top .header__wrapper .social__icon li a i {
  color: var(--theme);
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}
.header__top .header__wrapper .social__icon li:hover a i {
  color: var(--white);
}
.header__one {
  background: var(--theme);
  padding: 25px 0;
}
.header__two .logo__menuadjust .main__logo {
  display: none;
}
.menu-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.9s;
  background: var(--theme);
}

/* ============================================================ */
/* 6. Search and Sidebar */
/* ============================================================ */
.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: #ffffff;
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}
.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: uppercase;
  background: transparent;
  font-size: 25px;
  color: var(--theme);
  border-bottom: 2px solid var(--theme);
  text-align: center;
  letter-spacing: 2px;
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background: transparent;
}
input.main-search-input::placeholder {
  color: var(--theme);
  opacity: 1;
  font-size: 25px;
}
.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--theme);
  cursor: pointer;
}

/* ============================================================ */
/* 7. Preloader & Scroll */
/* ============================================================ */
.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--white);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  transition: all 200ms linear;
}
.scroll-up::after {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  content: "\f062";
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: var(--theme);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}
.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-up svg path {
  fill: none;
}
.scroll-up svg.scroll-circle path {
  stroke: var(--theme);
  stroke-width: 4px;
  box-sizing: border-box;
  transition: all 200ms linear;
}
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: var(--white);
  z-index: 1000;
  transform: translateX(0);
}
#loader-wrapper .loader-section.section-left {
  left: 0;
}
#loader-wrapper .loader-section.section-right {
  right: 0;
}
#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--theme);
  animation: spin 2s linear infinite;
  z-index: 99999;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--theme);
  animation: spin 3s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--theme);
  animation: spin 1.5s linear infinite;
}
.loaded #loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}
.loaded #loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

/* ============================================================ */
/* 8. Feature Section */
/* ============================================================ */
.feature__section {
  position: relative;
  margin-top: -80px;
  z-index: 99;
}
.feature__section .feature__wrapper {
  padding: 30px;
  background-color: var(--white);
}
.feature__section .feature__items .feature__thumb {
  position: relative;
}
.feature__section .feature__items .feature__thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}
.feature__section .feature__items .feature__thumb::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(360deg, var(--black), transparent);
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  border-radius: 10px;
}
.feature__section .feature__items .feature__box {
  position: absolute;
  bottom: 25px;
  text-align: center;
  padding: 0 30px;
  width: 100%;
  opacity: 1;
  visibility: visible;
  transition: all 0.7s;
}
.feature__section .feature__items .feature__box .feature__title {
  text-transform: capitalize;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 30px;
  z-index: 99;
  position: relative;
}
.feature__section .feature__items .feature__box .feature__icon {
  margin-bottom: -100px;
}
.feature__section .feature__items .feature__box .feature__icon .icon {
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  background: var(--base) !important;
  display: inline-block;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 99;
}
.feature__section .feature__items .feature__box .feature__icon i {
  font-size: 36px;
  color: var(--white) !important;
}
.feature__section .feature__items .feature__content {
  position: absolute;
  background: var(--theme);
  padding: 30px 30px 30px;
  text-align: center;
  border-radius: 0 0 10px 10px;
  bottom: -60px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
.feature__section .feature__items .feature__content .feature__title {
  text-transform: capitalize;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 15px;
  z-index: 99;
  position: relative;
}
.feature__section .feature__items .feature__content p {
  color: var(--white);
}
.feature__section .feature__items:hover .feature__box {
  visibility: hidden;
  bottom: 60px;
}
.feature__section .feature__items:hover .feature__content {
  bottom: -30px;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

/* ============================================================ */
/* 9. About Section */
/* ============================================================ */
.about__section .about__thumb img {
  width: 100%;
  height: 180%;
}
.about__section .style__two {
  position: relative;
}
.about__section .style__two::before {
  content: "";
  position: absolute;
  right: -30px;
  top: 0;
  height: 50%;
  width: 15px;
  background: var(--theme);
}
.about__section .style__two::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -30px;
  height: 55%;
  width: 15px;
  background: var(--theme);
}
.about__section .style__two .video__content .video {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  display: inline-block;
  z-index: 4;
  transform: translate(-50%, -50%);
}
.about__section .style__two .video__content .video a {
  position: relative;
  color: var(--white);
  font-size: 25px;
  z-index: 1;
  background-color: var(--theme);
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 100%;
  display: block;
  transition: 0.6s;
}
.about__section .style__two .video__content .video-pulse::after,
.about__section .style__two .video__content .video-pulse::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  line-height: 100px;
  border: 1px solid var(--white);
  opacity: 0.7;
  left: 0;
  top: 0;
  border-radius: 50%;
  animation-duration: 2.5s;
  animation-timing-function: linear;
  animation-name: video-animation;
  animation-iteration-count: infinite;
}
.about__section .style__two .video__content .video-pulse::before {
  animation-delay: 1s;
}
.about__section .about__content h2 {
  text-transform: capitalize;
  font-weight: 500;
}
.about__section .about__content h2 span {
  color: var(--base);
}
.about__section .about__content ul li {
  color: var(--pra);
}
.about__section .about__content ul li:not(:last-child) {
  margin-bottom: 10px;
}
.about__section .about__content ul li i {
  color: var(--base);
  margin-right: 5px;
}
.about__section .about__content .text p {
  color: var(--theme) !important;
  font-weight: 600;
}

/* ============================================================ */
/* 11. Product Section */
/* ============================================================ */
.product__section .product__items {
  background-color: var(--white);
  box-shadow: 0px 0px 8px 0px rgba(136, 136, 136, 0.1);
}
.product__section .product__items .product__thumb {
  position: relative;
}
.product__section .product__items .product__thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 0 0;
}
.product__section .product__items .product__thumb .product__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  z-index: 999;
  gap: 10px;
}
.product__section .product__items .product__thumb .product__icon li {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--theme);
  margin: 0px 2px;
  transition: all 0.4s ease-out 0s;
  cursor: pointer;
}
.product__section .product__items .product__thumb .product__icon li a i {
  color: var(--white);
  font-size: 14px;
}
.product__section .product__items .product__thumb::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--subtitle) 100%);
  content: "";
  pointer-events: none;
  z-index: 1;
  transition: all 0.4s ease;
}
.product__section .product__items .product__thumb::after {
  position: absolute;
  left: 15px;
  bottom: 15px;
  right: 15px;
  top: 15px;
  border: 2px solid var(--theme);
  content: "";
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.product__section .product__items .product__content {
  padding: 30px 0;
}
.product__section .product__items .product__content h4 {
  text-transform: capitalize;
}
.product__section .product__items .product__content h4 a {
  transition: all 0.4s ease-in-out;
}
.product__section .product__items .product__content h4 a:hover {
  color: var(--base);
}
.product__section .product__items .product__content .product__price {
  gap: 6px;
}
.product__section .product__items .product__content .product__price del {
  font-size: 16px;
  color: var(--pra);
  font-weight: 500;
}
.product__section .product__items .product__content .product__price span {
  font-size: 16px;
  color: var(--pra);
  font-weight: 500;
}
.product__section .product__items .product__content ul {
  display: flex;
  align-items: center;
  margin-top: 10px;
  justify-content: center;
}
.product__section .product__items .product__content ul li i {
  color: var(--base);
}
.product__section .product__items:hover .product__thumb::before {
  bottom: 0;
  height: 100%;
}
.product__section .product__items:hover .product__thumb::after {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  transition-delay: 0.2s;
}

/* ============================================================ */
/* 12. Story Section */
/* ============================================================ */
.story__section .story__content .sub__tittle h6 {
  margin-bottom: 20px;
}
.story__section .story__content .sub__tittle h6::before {
  display: none;
}
.story__section .story__content h2 {
  text-transform: capitalize;
  margin-bottom: 15px;
}
.story__section .story__content h6 {
  color: var(--theme);
  line-height: 150%;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
}
.story__section .story__content .button .cmn--btn span {
  color: var(--theme);
  transition: all 0.3s ease-in-out;
}
.story__section .story__content .button .cmn--btn:hover span {
  color: var(--white);
}
.story__section .story__thumb img {
  width: 100%;
  height: 100%;
}

/* ============================================================ */
/* 13. Apply Section */
/* ============================================================ */
.apply__section .apply__thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.apply__section .apply__wrapper {
  padding: 60px 0 0 60px;
  border-radius: 10px;
}
.apply__section .apply__wrapper .info__header h2 {
  text-transform: capitalize;
  margin-bottom: 20px;
}
.apply__section .contact__right .form__clt input {
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid var(--subtitle);
  padding: 20px 0;
  color: var(--black);
  background-color: transparent;
  font-size: 16px;
}
.apply__section .contact__right .cmn--btn {
  background: transparent;
}
.apply__section .contact__right .cmn--btn span {
  color: var(--theme);
}
.apply__section .contact__right .cmn--btn:hover span {
  color: var(--white);
}

/* ============================================================ */
/* 14. Service Section */
/* ============================================================ */
.service__section .service__items {
  background-color: var(--white);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.service__section .service__items .service__thumb {
  overflow: hidden;
}
.service__section .service__items .service__thumb img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.service__section .service__items .service__content {
  padding: 25px 25px;
}
.service__section .service__items .service__content h4 {
  text-transform: capitalize;
  margin-bottom: 10px;
}
.service__section .service__items .service__content h4 a {
  transition: all 0.4s ease-in-out;
}
.service__section .service__items .service__content h4 a:hover {
  color: var(--base);
}
.service__section .service__items:hover .service__thumb img {
  transform: scale(1.1);
}

/* ============================================================ */
/* 15. Discount Section */
/* ============================================================ */
.discount__section .discount__items .discount__thumb {
  position: relative;
}
.discount__section .discount__items .discount__thumb::before {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: transparent;
  background-image: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.78) 20%,
    rgba(0, 60, 56, 0) 80%
  );
  content: "";
  border-radius: 10px;
}
.discount__section .discount__items .discount__thumb::after {
  position: absolute;
  left: 15px;
  bottom: 15px;
  right: 15px;
  top: 15px;
  border: 2px solid var(--theme);
  content: "";
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  visibility: hidden;
  border-radius: 10px;
  transform: scale(0.5);
  transition: all 0.2s ease;
}
.discount__section .discount__items .discount__thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.discount__section .discount__items .discount__thumb .discount__wrap {
  position: absolute;
  top: 0;
  left: 0;
}
.discount__section
  .discount__items
  .discount__thumb
  .discount__wrap
  .discount__content {
  padding: 60px 60px;
}
.discount__section
  .discount__items
  .discount__thumb
  .discount__wrap
  .discount__content
  h6 {
  color: var(--white);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.discount__section
  .discount__items
  .discount__thumb
  .discount__wrap
  .discount__content
  h2 {
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 10px;
  font-size: 2rem;
}
.discount__section
  .discount__items
  .discount__thumb
  .discount__wrap
  .discount__content
  p {
  color: var(--white);
  margin-bottom: 40px;
}
.discount__section .discount__items:hover .discount__thumb::after {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  transition-delay: 0.2s;
}

/* ============================================================ */
/* 16. Contact Section (Inline) */
/* ============================================================ */
.contact__section {
  background: url(../img/contact/bg.avif) no-repeat center center;
  background-size: cover;
}
.contact__section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.7);
}
.contact__section .contact__item a i {
  font-size: 28px;
  color: var(--theme);
  margin-bottom: 30px;
  width: 70px;
  height: 70px;
  background-color: var(--white);
  line-height: 70px;
  border-radius: 100%;
}
.contact__section .contact__item h5 {
  color: var(--white);
}
.contact__section .contact__item h2 {
  color: var(--white);
}

/* ============================================================ */
/* 17. Work Section */
/* ============================================================ */
.work__section .work__items {
  background-color: var(--white);
  box-shadow: 0px 0px 8px 0px rgba(136, 136, 136, 0.1);
  padding: 30px;
}
.work__section .work__items .work__icon {
  font-weight: 700;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--theme);
  font-size: 48px;
  line-height: 55px;
  color: transparent;
}
.work__section .work__items .work__content h5 {
  text-transform: capitalize;
  font-weight: 600;
}
.work__section .work__items .work__content h5 a {
  transition: all 0.3s ease-in-out;
}
.work__section .work__items .work__content h5 a:hover {
  color: var(--base);
}
.work__section .work__items .work__content p {
  margin-bottom: 15px;
}
.work__section .work__items .work__content .arrow__button {
  font-size: 18px;
  position: relative;
  transform: translateX(0);
  transition: 0.7s;
  display: inline-block;
}
.work__section .work__items .work__content .arrow__button i {
  color: var(--black);
}
.work__section .work__items .work__content .arrow__button::before {
  position: absolute;
  content: "Know More";
  font-weight: 600;
  color: var(--theme);
  font-size: 16px;
  left: -95px;
  top: -2px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.work__section .work__items:hover .work__content .arrow__button {
  transform: translateX(95px);
  color: var(--theme);
}
.work__section .work__items:hover .work__content .arrow__button::before {
  opacity: 1;
}

/* ============================================================ */
/* 18. Testimonial Section */
/* ============================================================ */
.testimonial__section .testimonial__wrapper {
  padding: 2px;
}
.testimonial__section .testi__items {
  background: url(../img/contact/bg.avif) no-repeat center center;
  background-size: cover;
  padding: 50px 40px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0px 0px 8px 0px rgba(136, 136, 136, 0.1);
}
.testimonial__section .testi__items .testi__wrap {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
  gap: 25px;
}
.testimonial__section .testi__items .testi__wrap .testi__thumb img {
  border-radius: 100%;
}
.testimonial__section .testi__items .testi__wrap .content {
  position: relative;
}
.testimonial__section .testi__items .testi__wrap .content span {
  font-size: 18px;
  color: var(--pra);
}
.testimonial__section .testi__items p {
  position: relative;
}
.testimonial__section .testi__items ul {
  display: flex;
  align-items: center;
  margin-top: 15px;
  position: relative;
}
.testimonial__section .testi__items ul li {
  margin-right: 4px;
}
.testimonial__section .testi__items ul li i {
  color: var(--base);
}
.testimonial__section .testi__inner {
  background: var(--white);
  position: relative;
  text-align: center;
  padding: 0 60px 50px;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  border-top: 10px solid var(--theme);
  transition: all 0.3s ease-in-out;
  margin-top: 50px;
  margin-bottom: 40px;
}
.testimonial__section .testi__inner .testi__inner__thumb {
  margin-bottom: 40px;
  margin-top: -90px;
  position: relative;
}
.testimonial__section .testi__inner .testi__inner__thumb img {
  width: 150px;
  height: 150px;
  border-radius: 100%;
}
.testimonial__section .testi__inner .testi__inner__content h5 {
  margin-top: 20px;
}
.testimonial__section .testi__inner .testi__inner__content span {
  font-size: 17px;
  font-weight: 500;
  color: var(--base);
}

/* ============================================================ */
/* 19. Team Section */
/* ============================================================ */
.team__section .team__items {
  box-shadow: 0px 3px 7.54px 5.46px rgba(0, 0, 0, 0.04);
  background: var(--white);
  border-radius: 0 0 10px 10px;
}
.team__section .team__items .team__thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 0 0;
}
.team__section .team__items .team__content {
  position: relative;
  padding: 25px 30px;
  text-align: center;
}
.team__section .team__items .team__content h5 a {
  transition: all 0.4s ease-in-out;
}
.team__section .team__items .team__content h5 a:hover {
  color: var(--base);
}
.team__section .team__items .team__content p {
  text-transform: capitalize;
  color: var(--base);
  margin-top: 5px;
}
.team__section .team__items .team__content .social__icon {
  gap: 10px;
  margin-top: 20px;
}
.team__section .team__items .team__content .social__icon li {
  width: 30px;
  height: 30px;
  line-height: 28px;
  border: 1px solid var(--theme);
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.team__section .team__items .team__content .social__icon li a i {
  color: var(--theme);
  font-size: 15px;
  transition: all 0.4s ease-in-out;
}
.team__section .team__items .team__content .social__icon li:hover {
  background-color: var(--theme);
}
.team__section .team__items .team__content .social__icon li:hover a i {
  color: var(--white);
}

/* ============================================================ */
/* 20. Pagination */
/* ============================================================ */
.default__pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.default__pagination li {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid var(--theme);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  cursor: pointer;
  font-weight: 500;
}
.default__pagination li a {
  transition: all 0.4s;
  color: var(--theme);
}
.default__pagination li a i {
  color: var(--theme);
}
.default__pagination li:hover {
  background-color: var(--theme);
}
.default__pagination li:hover a {
  color: var(--white);
}
.default__pagination li:hover a i {
  color: var(--white);
}

/* ============================================================ */
/* 21. Team Details */
/* ============================================================ */
.team__details {
  overflow: hidden;
}
.team__details .team__left .details__thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.team__details .details__cont h3 {
  text-transform: capitalize;
  margin-bottom: 15px;
}
.team__details .details__cont span {
  font-size: 18px;
  color: var(--base);
  font-weight: 600;
  text-transform: uppercase;
}
.team__details .details__cont p {
  margin-top: 15px;
  max-width: 100%;
}
.team__details .details__cont .list__item li {
  font-size: 16px;
  font-weight: 500;
  padding: 15px 0;
  color: var(--pra);
}
.team__details .details__cont .list__item li i {
  color: var(--base);
  font-size: 16px;
  margin-right: 5px;
}
.team__details .bottom__info .bottom__content h3 {
  text-transform: capitalize;
  margin-bottom: 15px;
}
.team__details .bottom__info .bottom__content ul li {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--black);
}
.team__details .bottom__info .bottom__content .social__icon li {
  border: 1px solid var(--theme);
}
.team__details .bottom__info .bottom__content .social__icon li a i {
  color: var(--theme);
  transition: all 0.3s ease-in-out;
}
.team__details .bottom__info .bottom__content .social__icon li:hover a i {
  color: var(--white);
}

/* ============================================================ */
/* 23. Details Section (Generic) */
/* ============================================================ */
.details__section .details__items .title {
  text-transform: capitalize;
  margin-bottom: 25px;
}
.details__section .details__items .details__thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.details__section .details__items .details__content {
  padding: 30px 0;
}
.details__section .details__items .details__content h3 {
  text-transform: capitalize;
  margin-bottom: 20px;
}
.details__section .details__items .details__content p {
  max-width: 100%;
}
.details__section .details__items .img__item {
  padding: 30px 0;
}
.details__section .details__items .img__item .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.details__section .details__items .img__item .mt-25 {
  margin-top: 25px;
}
.details__section .details__items .prev__next__btns {
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.details__section .details__items .prev__next__btns .text {
  font-size: 16px;
  color: var(--black);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.details__section .details__items .prev__next__btns .text:hover {
  color: var(--base);
}
.details__section .details__items .prev__next__btns .icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  font-size: 16px;
  text-align: center;
  line-height: 40px;
  color: var(--base);
  border-radius: 100px;
}
.details__section .details__items .prev__next__btns .prev__btn,
.details__section .details__items .prev__next__btns .next__btn {
  gap: 15px;
}
.details__section .service__details .service__wrap .service__list {
  gap: 25px;
}
.details__section .service__details .service__wrap .service__list .icon {
  width: 70px;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  background-color: var(--theme);
  text-align: center;
}
.details__section .service__details .service__wrap .service__list .icon i {
  color: var(--white);
  font-size: 16px;
}
.details__section .service__details .pra__text {
  max-width: 100%;
}
.details__section .service__details .special__box {
  background-color: var(--theme);
  padding: 40px;
  border-radius: 10px;
}
.details__section .service__details .special__box h5 {
  line-height: 40px;
  color: var(--white);
}
.details__section .service__details .benefit__item .points {
  position: relative;
}
.details__section .service__details .benefit__item .points li {
  position: relative;
  font-size: 16px;
  padding-left: 25px;
  font-weight: 500;
  line-height: 1.6em;
  margin-bottom: 12px;
  color: var(--pra);
}
.details__section .service__details .benefit__item .points li::before {
  position: absolute;
  content: "\f14a";
  left: 0px;
  top: 5px;
  color: var(--base);
  font-size: 16px;
  line-height: 1em;
  font-weight: 500;
  font-family: "FontAwesome";
}

/* ============================================================ */
/* 24. Sidebar (Right) */
/* ============================================================ */
.sidebar__right .widget__tittle h4 {
  text-transform: capitalize;
}
.sidebar__right .widget__tittle h5 {
  text-transform: capitalize;
}
.sidebar__right .service__list {
  position: relative;
}
.sidebar__right .service__list li {
  padding: 20px 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
}
.sidebar__right .service__list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--black);
  transition: all 0.4s ease-in-out;
}
.sidebar__right .service__list li a span {
  font-size: 18px;
  font-weight: 500;
}
.sidebar__right .service__list li:hover {
  background-color: var(--theme);
  border: 1px solid var(--theme);
}
.sidebar__right .service__list li:hover a {
  color: var(--white);
}
.sidebar__right .service__list .active {
  background-color: var(--theme);
  border: 1px solid var(--theme);
}
.sidebar__right .service__list .active a {
  color: var(--white);
}
.sidebar__right .service__helping {
  background-color: var(--white);
  box-shadow: 0px 3px 7.54px 5.46px rgba(0, 0, 0, 0.04);
}
.sidebar__right .service__helping .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.sidebar__right .service__helping .helping__content {
  padding: 20px 25px;
}
.sidebar__right .service__helping .helping__content h4 {
  text-transform: capitalize;
  margin-bottom: 10px;
}
.sidebar__right .service__helping .helping__content p {
  text-transform: capitalize;
}
.sidebar__right .service__helping .helping__content ul li {
  font-size: 18px;
  font-weight: 500;
}
.sidebar__right .service__helping .helping__content ul li i {
  color: var(--base);
  margin-right: 4px;
  font-size: 18px;
}
.sidebar__right .service__helping .helping__content ul li span a {
  color: var(--pra);
  text-transform: capitalize;
}
.sidebar__right form {
  display: flex;
  border-radius: 5px;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 1px solid var(--border);
}
.sidebar__right form input {
  width: 100%;
  border-radius: 5px;
  padding: 12px 20px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--black);
}
.sidebar__right form button {
  margin-right: 10px;
  margin-top: 8px;
  background: none;
  border: none;
  outline: none;
}
.sidebar__right form button i {
  color: var(--theme);
}
.sidebar__right .recent__wrap .recent__items {
  display: flex;
  align-items: center;
  gap: 9px 20px;
}
.sidebar__right .recent__wrap .recent__items .recent__content {
  width: calc(100% - 150px);
}
.sidebar__right .recent__wrap .recent__items .recent__content h6 {
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.sidebar__right .recent__wrap .recent__items .recent__content h6:hover {
  color: var(--base);
}
.sidebar__right .recent__wrap .recent__items .recent__content .date {
  font-size: 16px;
  color: var(--base);
}
.sidebar__right .recent__wrap .recent__items:not(:last-child) {
  margin-bottom: 24px;
}
.sidebar__right .recent__wrap .recent__items .thumb {
  display: block;
  width: 120px;
}
.sidebar__right .recent__wrap .recent__items .thumb img {
  width: 100%;
  border-radius: 5px;
}
.sidebar__right .tag__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.sidebar__right .tag__list li {
  margin: 0 8px 8px 0;
}
.sidebar__right .tag__list li a {
  font-size: 16px;
  display: inline-block;
  padding: 5px 18px;
  color: var(--black);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}
.sidebar__right .tag__list li a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.sidebar__right .recent__btn {
  display: flex;
  align-items: center;
  gap: 5px;
}
.sidebar__right .recent__btn span {
  color: var(--base);
  font-size: 14px;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
}
.sidebar__right .recent__btn .icon i {
  font-size: 14px;
  color: var(--base);
}

/* ============================================================ */
/* 25. Blog Details Section */
/* ============================================================ */
.blog__details {
  overflow: hidden;
}
.blog__details .blog__details__items .details__wrapper {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}
.blog__details .blog__details__items .details__wrapper .details__thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.blog__details .blog__details__items .details__wrapper .details__content {
  padding: 25px 25px;
}
.blog__details .blog__details__items .details__wrapper .details__content h2 {
  text-transform: capitalize;
  font-size: 36px;
  line-height: 40px;
}
.blog__details .blog__details__items .details__wrapper .details__content p {
  max-width: 100%;
}
.blog__details .blog__details__items .details__wrapper .details__content ul {
  display: flex;
  align-items: center;
  gap: 10px 30px;
  padding: 20px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.blog__details .blog__details__items .details__wrapper .details__content ul li {
  margin-right: 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--pra);
}
.blog__details
  .blog__details__items
  .details__wrapper
  .details__content
  ul
  li
  i {
  margin-right: 8px;
  color: var(--base);
  font-size: 16px;
}
.blog__details
  .blog__details__items
  .details__wrapper
  .details__content
  .more__details__item
  img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.blog__details
  .blog__details__items
  .details__wrapper
  .details__content
  .video__thumb {
  margin: 28px 0;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.blog__details
  .blog__details__items
  .details__wrapper
  .details__content
  .video__thumb
  img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.blog__details
  .blog__details__items
  .details__wrapper
  .details__content
  .video__thumb
  .video-btn {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--theme);
  text-align: center;
  line-height: 58px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  transition: all 0.4s;
}
.blog__details
  .blog__details__items
  .details__wrapper
  .details__content
  .video__thumb
  .video-btn
  i {
  font-size: 18px;
  color: var(--white);
}
.blog__details
  .blog__details__items
  .details__wrapper
  .details__content
  .standard__footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(69, 47, 244, 0.1);
  padding-top: 24px;
  margin-top: 28px;
}
.blog__details
  .blog__details__items
  .details__wrapper
  .details__content
  .standard__footer
  .standard___btn {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog__details
  .blog__details__items
  .details__wrapper
  .details__content
  .standard__footer
  .standard___btn
  .icon {
  margin-top: 6px;
}
.blog__details
  .blog__details__items
  .details__wrapper
  .details__content
  .standard__footer
  .standard___btn
  .icon
  i {
  font-size: 22px;
  color: var(--base);
}
.blog__details
  .blog__details__items
  .details__wrapper
  .details__content
  .standard__footer
  .standard___btn
  span {
  font-weight: 600;
  font-size: 18px;
  color: var(--base);
}
.blog__details
  .blog__details__items
  .details__wrapper
  .details__content
  .standard__footer
  .standard___btn2 {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog__details
  .blog__details__items
  .details__wrapper
  .details__content
  .standard__footer
  .standard___btn2
  .icon
  i {
  font-size: 16px;
  color: var(--base);
}
.blog__details
  .blog__details__items
  .details__wrapper
  .details__content
  .standard__footer
  .standard___btn2
  span {
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
  transition: all 0.3s ease-in-out;
}
.blog__details
  .blog__details__items
  .details__wrapper
  .details__content
  .standard__footer
  .standard___btn2
  span:hover {
  color: var(--base);
}
.blog__details .blog__details__items .comments__wrap {
  padding: 28px 28px;
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
}
.blog__details .blog__details__items .comments__wrap h4 {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  text-transform: capitalize;
}

/* ============================================================ */
/* 26. Reviews & Comments */
/* ============================================================ */
.reviews__boxes {
  padding: 15px 0;
  display: flex;
  gap: 20px;
}
.reviews__boxes:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.reviews__boxes .thumb {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.reviews__boxes .thumb img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.reviews__boxes .thumb__review {
  width: 60px;
  height: 60px;
}
.reviews__boxes .thumb__review img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.reviews__boxes .review-content {
  width: calc(100% - 100px);
}
.reviews__boxes .review-content .name__ratting {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}
.reviews__boxes .review-content .name {
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  font-weight: 600;
  text-transform: capitalize;
}
.reviews__boxes .review-content .time {
  font-size: 16px;
  color: var(--pra);
  font-weight: 500;
  margin-left: 10px;
}
.reviews__boxes .review-content p {
  font-size: 16px;
  margin-bottom: 10px;
}
.reviews__boxes .review-content .liked__wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}
.reviews__boxes .review-content .liked__wrap li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reviews__boxes .review-content .liked__wrap li span {
  color: var(--base);
  font-size: 18px;
  font-weight: 400;
}
.reviews__boxes .review-content .liked__wrap li .icon {
  margin-top: 6px;
}
.reviews__boxes .review-content .liked__wrap li .icon i {
  color: var(--base);
  font-size: 20px;
}
.reviews__boxes .review-content .ratting {
  display: flex;
  align-items: center;
  gap: 5px;
}
.reviews__boxes .review-content .ratting span {
  color: var(--base);
  font-size: 16px;
}

/* ============================================================ */
/* 27. Gallery Section */
/* ============================================================ */
.gallery-section {
  overflow: hidden;
  position: relative;
}
.gallery-section .galley-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery-section .galley-wrapper .gallery-items .g-items {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 25px;
}
.gallery-section .galley-wrapper .gallery-items .g-items img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.gallery-section .galley-wrapper .gallery-items .g-items .link-solcial {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  opacity: 0;
  transition: all 0.7s;
}
.gallery-section
  .galley-wrapper
  .gallery-items
  .g-items
  .link-solcial
  .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.gallery-section
  .galley-wrapper
  .gallery-items
  .g-items
  .link-solcial
  .content
  .title {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 600;
}
.gallery-section .galley-wrapper .gallery-items .g-items .link-solcial .link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-section .galley-wrapper .gallery-items .g-items .link-solcial .link a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid var(--white);
  border-radius: 10%;
  display: block;
}
.gallery-section
  .galley-wrapper
  .gallery-items
  .g-items
  .link-solcial
  .link
  a:not(:last-child) {
  margin-right: 10px;
}
.gallery-section
  .galley-wrapper
  .gallery-items
  .g-items
  .link-solcial
  .link
  a
  i {
  color: var(--white);
  font-size: 17px;
}
.gallery-section .galley-wrapper .gallery-items .g-items:hover {
  cursor: pointer;
}
.gallery-section .galley-wrapper .gallery-items .g-items:hover .link-solcial {
  opacity: 1;
}
.gallery-section .galley-wrapper .gallery-items-two {
  margin: 0 20px;
}

/* ============================================================ */
/* 28. Error Page */
/* ============================================================ */
.error__section .error__content h1 {
  font-size: 200px;
  color: var(--black);
}
.error__section .error__content h3 {
  text-transform: uppercase;
  margin-bottom: 15px;
}
.error__section .error__content p {
  text-align: center !important;
  max-width: 100%;
}
.error__section .error__content .button .cmn--btn span {
  color: var(--theme);
}
.error__section .error__content .button .cmn--btn:hover span {
  color: var(--white);
}

/* ============================================================ */
/* 33. Contact Page */
/* ============================================================ */
.contact__info {
  overflow: hidden;
  background-color: #ffffff;
}
.contact__info .info__items {
  background-color: var(--white);
  padding: 50px 30px;
}
.contact__info .info__items .info__icon {
  width: 75px;
  height: 75px;
  line-height: 80px;
  border-radius: 100%;
  box-shadow: 0px 4px 24px 0px rgba(106, 105, 194, 0.15);
  text-align: center;
  margin: 0 auto;
}
.contact__info .info__items .info__icon i {
  font-size: 28px;
  color: var(--theme);
}
.contact__info .info__items h4 {
  text-transform: capitalize;
  margin-bottom: 0;
  margin-top: 20px;
  font-weight: 600;
}
.contact__us__section .contact__right .form__clt input {
  width: 100%;
  outline: none;
  border-radius: 5px;
  border: none;
  padding: 14px 15px;
  color: var(--black);
  border: 1px solid var(--border);
  font-size: 16px;
}
.contact__us__section .contact__right .form__clt__big textarea {
  padding: 14px 15px 130px;
  width: 100%;
  outline: none;
  border-radius: 5px;
  border: none;
  color: var(--black);
  border: 1px solid var(--border);
}
.contact__us__section .contact__right .cmn--btn {
  background: transparent;
  width: 100%;
}
.contact__us__section .contact__right .cmn--btn span {
  color: var(--theme);
}
.contact__us__section .contact__right .cmn--btn:hover span {
  color: var(--white);
}
.map__section .googpemap iframe {
  width: 100%;
  height: 650px;
}

/* ============================================================ */
/* 34. Animations */
/* ============================================================ */
@-webkit-keyframes video-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
@keyframes video-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}

/* ============================================================ */
/* 35. Blog Section */
/* ============================================================ */
.blog__section {
  overflow: hidden;
}
.blog__section .blog__items {
  background-color: var(--white);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.blog__section .blog__items .blog__thumb {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.blog__section .blog__items .blog__thumb::before {
  position: absolute;
  top: 0;
  left: -75%;
  display: block;
  content: "";
  width: 15%;
  height: 100%;
  transform: skewX(-35deg);
  background-color: var(--theme);
  opacity: 0.3;
  z-index: 1;
}
.blog__section .blog__items .blog__thumb img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.blog__section .blog__items .blog__content {
  padding: 30px 20px;
}
.blog__section .blog__items .blog__content h4 {
  margin-top: 0;
  margin-bottom: 13px;
}
.blog__section .blog__items .blog__content h4 a {
  color: var(--black);
  transition: all 0.4s ease-in-out;
}
.blog__section .blog__items .blog__content ul {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.blog__section .blog__items .blog__content ul li {
  margin-right: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--pra);
}
.blog__section .blog__items .blog__content ul li i {
  margin-right: 5px;
  color: var(--base);
  font-size: 16px;
}
.blog__section .blog__items:hover .blog__content h4 a {
  color: var(--base);
}
.blog__section .blog__items:hover .blog__thumb::before {
  left: 140%;
  transition: all 2300ms cubic-bezier(0.19, 1, 0.22, 1);
}
.blog__section .blog__items:hover .blog__thumb img {
  transform: scale(1.1) rotate(-4deg);
}

/* ============================================================ */
/* 36. Footer Section */
/* ============================================================ */
.footer__section {
  background: url(../img/footer/footer-bg.avif) no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.footer__section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.7);
}
.footer__section .footer__top {
  position: relative;
  padding: 80px 0;
}
.footer__section .footer__top .footer__widget .widget__head {
  position: relative;
}
.footer__section .footer__top .footer__widget .widget__head h5 {
  text-transform: capitalize;
  color: var(--white);
  margin-bottom: 10px;
}
.footer__section
  .footer__top
  .footer__widget
  .widget__head
  .witr_bar_main
  .witr_bar_inner {
  margin: initial !important;
}
.footer__section .footer__top .footer__widget p {
  color: var(--white);
}
.footer__section
  .footer__top
  .footer__widget
  .contact__list
  li:not(:last-child) {
  margin-bottom: 15px;
}
.footer__section .footer__top .footer__widget .contact__list li a {
  color: var(--white);
}
.footer__section .footer__top .footer__widget .contact__list li a i {
  font-size: 16px;
  margin-right: 10px;
  color: var(--theme);
}
.footer__section .footer__top .footer__widget .list li {
  margin-bottom: 10px;
  text-transform: capitalize;
}
.footer__section .footer__top .footer__widget .list li a {
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.footer__section .footer__top .footer__widget .list li a i {
  margin-right: 5px;
  font-size: 16px;
  color: var(--theme);
}
.footer__section .footer__top .footer__widget .list li a:hover {
  color: var(--base);
}
.footer__section .footer__top .footer__widget .recent__items {
  gap: 15px;
}
.footer__section .footer__top .footer__widget .recent__items:not(:last-child) {
  margin-bottom: 30px;
}
.footer__section .footer__top .footer__widget .recent__items .thumb img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
}
.footer__section .footer__top .footer__widget .recent__items .content p {
  font-size: 14px;
  margin-bottom: 5px;
  color: var(--base);
}
.footer__section .footer__top .footer__widget .recent__items .content h6 {
  font-size: 15px;
  line-height: 20px;
}
.footer__section .footer__top .footer__widget .recent__items .content h6 a {
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.footer__section
  .footer__top
  .footer__widget
  .recent__items
  .content
  h6
  a:hover {
  color: var(--base);
}
.footer__section .footer__top .footer__widget .item img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.footer__section .footer__top .footer__widget .item .iocn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: var(--theme);
  width: 25px;
  height: 25px;
  line-height: 27px;
  border-radius: 50%;
  background-color: var(--white);
  text-align: center;
  transition: 0.3s;
  opacity: 0;
}
.footer__section .footer__top .footer__widget .footer__newsletter input {
  background: transparent;
  border: 1px solid var(--white);
  padding: 14px 20px;
  font-size: 15px;
  color: var(--white);
  width: 100%;
  border-radius: 10px;
  position: relative;
}
.footer__section .footer__top .footer__widget .footer__newsletter button {
  position: absolute;
  right: 1px;
  border: none;
  height: 52px;
  width: 70px;
  font-size: 16px;
  background: var(--base);
  color: var(--white);
  cursor: pointer;
  border-radius: 0 10px 10px 0;
}
.footer__section .footer__top .footer__widget .footer__newsletter button i {
  font-size: 18px;
}
.footer__section .footer__bottom {
  border-top: 1px solid var(--white);
  position: relative;
  padding: 50px 0;
}
.footer__section .footer__bottom p {
  color: var(--white);
}
.footer__section .footer__bottom p a {
  color: var(--base);
}
