@charset "UTF-8";
/* ======== All Sass Import Start ========= */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
.btn-1 {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-1:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-1:focus {
  color: var(--text-white);
}

.btn-1.danger {
  --bg-color: rgb(197, 61, 43);
  --primary-color: rgb(197, 61, 43);
  border-color: rgba(var(--primary-color));
}

.btn-two {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-two:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-two:focus {
  color: var(--text-white);
}

.btn-two {
  background: #ffffff;
  padding: 8px 18px;
  border-color: #ffffff;
  color: #212121;
}

.btn-two:hover {
  background: #ececec;
  border-color: #ececec;
  color: #212121;
}

.theme-3-btn {
  display: inline-flex;
  height: 54px;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: rgba(var(--primary-color));
  border-radius: var(--border-radius);
  color: var(--text-white);
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  line-height: 16px;
  font-weight: 400;
}

.theme-3-btn:hover {
  background-color: transparent;
  border-color: rgba(var(--primary-color));
  color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn {
  background-color: transparent;
  color: var(--text-color);
  border-color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
}

.theme-3-btn.no-hover-effect:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
  border: 1px solid transparent;
}

.btn-lg {
  height: 44px;
  padding: 12px 24px;
}

.main-header {
  position: relative;
  /* ====== Top bar Start =======*/
}
.main-header .header-top {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-size: 14px;
  text-align: center;
  padding: 0;
  overflow: hidden;
  position: relative;
  height: 40px;
  /* Fixed height for the top bar */
}
.main-header .header-top .swiper-container {
  width: 100%;
  height: 40px;
  overflow: hidden;
}
.main-header .header-top .swiper-container .swiper-slide {
  height: 40px;
  white-space: nowrap;
  text-align: left;
  line-height: 40px;
}
.main-header .header-top .swiper-container .swiper-slide a {
  color: var(--text-color);
}
.main-header .header-top .swiper-container .swiper-slide a i {
  font-size: 12px;
}
.main-header .top-bar {
  padding: 10px 3px;
  background: var(--bg-color);
  border-color: var(--border-color);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  transition-duration: 0.3s;
  color: var(--text-color);
  width: 100%;
}
.main-header .top-bar .top-address {
  font-size: 15px;
  line-height: 16px;
  font-weight: 600;
  color: var(--text-color);
}
.main-header .top-bar .top-address div:first-child {
  border-right: 1px solid;
  border-color: var(--border-color);
  height: 18px;
}
.main-header .top-bar .drop-box a {
  color: var(--text-color);
}
.main-header .top-bar .drop-box .dropdown {
  border-right: 1px solid;
  border-color: var(--border-color);
}
.main-header .top-bar .drop-box .dropdown .dropdown-toggle {
  font-size: 15px;
  font-weight: 500;
}
.main-header .top-bar .drop-box .dropdown .dropdown-toggle i {
  font-size: 13px;
}
.main-header .top-bar .drop-box .dropdown .dropdown-toggle:after {
  display: none;
}
.main-header .top-bar .drop-box .dropdown .dropdown-menu {
  border-radius: 0;
  background-color: var(--bg-color);
  padding: 8px;
  border: none;
  box-shadow: var(--box-shadow);
  transform: translate3d(-45px, 35px, 0px) !important;
}
.main-header .top-bar .drop-box .dropdown .dropdown-menu li {
  line-height: 1.8;
}
.main-header .top-bar .drop-box .dropdown .dropdown-menu li a {
  color: var(--text-color);
  font-size: 17px;
  padding: 0 8px;
  text-align: left;
}
.main-header .top-bar .drop-box .dropdown .dropdown-menu li a:hover {
  --text-color: rgba(var(--primary-color));
}
.main-header .top-bar .drop-box .top-social li {
  height: 26px;
  width: 26px;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.4s;
  line-height: 1;
}
.main-header .top-bar .drop-box .top-social li:hover {
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  --border-color: rgba(var(--primary-color));
  border-color: var(--bg-color);
}
.main-header .top-bar .drop-box .top-social li:hover a {
  --text-color: var(--text-white);
  color: var(--text-color);
  transition: 0.4s;
}
.main-header .top-bar .drop-box .top-social li a {
  font-size: 12px;
  display: inline-block;
  color: var(--text-color);
  line-height: 1;
  font-weight: 600;
}
.main-header .top-bar .top-bar-list li {
  border-right: 1px solid var(--border-color);
  padding-right: 6px;
}
.main-header .top-bar .top-bar-list li a {
  color: #fff;
}
.main-header .top-bar .top-bar-list li:last-child {
  border: 0;
}
.main-header {
  /* ====== Top bar list ends ===== */
  /* ======= middle container navbar ===== */
}
.main-header .middle-container {
  background: var(--bg-color);
  color: var(--text-color);
}
.main-header .middle-container .middel-navbar {
  height: 70px;
}
.main-header .middle-container .middel-navbar .main-logo .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}
.main-header .middle-container .middel-navbar .main-logo .navbar-brand img {
  height: 40px;
}
.main-header .middle-container .middel-navbar .search-box {
  padding: 0 100px;
}
.main-header .middle-container .middel-navbar .search-box .navbar-right .input-group {
  border: 0;
  position: relative;
}
.main-header .middle-container .middel-navbar .search-box .navbar-right .input-group span {
  color: var(--text-color);
  border: 0;
  font-weight: 700;
  position: absolute;
  left: 20px;
  z-index: 5;
  width: -moz-max-content;
  width: max-content;
}
.main-header .middle-container .middel-navbar .search-box .navbar-right .input-group input.form-control {
  background: var(--bs-light);
  color: var(--text-color);
  padding: 0.75rem 0.75rem 0.75rem 3rem;
}
.main-header .middle-container .middel-navbar .search-box .navbar-right .header-btn a {
  background: rgba(var(--primary-color));
  color: var(--text-white);
  padding: 0.75rem 1rem;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  border-color: rgba(var(--primary-color));
  position: relative;
  transition: 0.4s;
  line-height: 1.5;
  display: inline-block;
}
.main-header .middle-container .middel-navbar .search-box .navbar-right .header-btn a:hover {
  background: var(--bg-color);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.main-header .middle-container .middel-navbar .search-box .navbar-right .header-btn a {
  color: var(--text-color);
  display: inline-block;
}
.main-header .middle-container .middel-navbar .cart-area .shopping-cart {
  color: var(--text-color);
  cursor: pointer;
}
.main-header .middle-container .middel-navbar .cart-area .shopping-cart .shop-icon {
  position: relative;
}
.main-header .middle-container .middel-navbar .cart-area .shopping-cart .shop-icon span {
  font-size: 20px;
}
.main-header .middle-container .middel-navbar .cart-area .shopping-cart .shop-icon small {
  width: 15px;
  height: 15px;
  line-height: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  --text-color: var(--text-white);
  color: var(--text-color);
  font-size: 12px;
  font-weight: 500;
  position: absolute;
  top: -5px;
  right: -8px;
}
.main-header .middle-container .middel-navbar .cart-area .shopping-cart .shopping-price {
  font-size: 14px;
  font-weight: 600;
}
.main-header .header-wrapper .header-container {
  background-color: var(--bg-color);
  color: var(--text-color);
}
.main-header .header-wrapper .header-container .header-nav .navbar {
  height: 70px;
  color: var(--text-color);
  position: relative;
  z-index: 9;
  line-height: 1.5;
}
.main-header .header-wrapper .header-container .header-nav .navbar .all-category {
  transition: 0.4s;
}
.main-header .header-wrapper .header-container .header-nav .navbar .all-category button {
  min-width: 270px;
  height: 50px;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  background: rgba(var(--primary-color));
  color: var(--text-white);
  border-color: rgba(var(--primary-color));
  position: relative;
  padding: 0 15px;
}
.main-header .header-wrapper .header-container .header-nav .navbar .all-category button span {
  line-height: 1;
}
.main-header .header-wrapper .header-container .header-nav .navbar .all-category button:after {
  content: "\f078";
  position: absolute;
  font-weight: 600;
  font-family: "fontAwesome";
  top: 0;
  right: 12px;
  top: 14px;
  font-size: 13px;
}
.main-header .header-wrapper .header-container .header-nav .navbar .all-category .category-menu {
  min-width: 270px;
  height: auto;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  position: absolute;
  top: 100px;
  overflow: hidden;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}
.main-header .header-wrapper .header-container .header-nav .navbar .all-category .category-menu li {
  border-bottom: 1px solid var(--border-color);
  line-height: 1;
}
.main-header .header-wrapper .header-container .header-nav .navbar .all-category .category-menu li a {
  color: var(--text-color);
  font-size: 15px;
  padding: 16px 16px;
  cursor: pointer;
  display: block;
  transition: all 0.3s ease-in-out;
}
.main-header .header-wrapper .header-container .header-nav .navbar .all-category .category-menu li a:hover {
  --text-color: rgba(var(--primary-color));
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
}
.main-header .header-wrapper .header-container .header-nav .navbar .all-category .category-menu-2 {
  right: 0;
  left: auto;
}
.main-header .header-wrapper .header-container .header-nav .navbar .all-category:hover .category-menu {
  visibility: visible;
  opacity: 1;
  top: 61px;
  transition: 0.4s;
}
.main-header .header-wrapper .header-container .header-nav .navbar .all-category-2:hover .category-menu {
  top: 50px;
}
.main-header .header-wrapper .header-container .header-nav .navbar .mobile-category .accordion-item {
  border: 0 !important;
  width: 270px;
}
.main-header .header-wrapper .header-container .header-nav .navbar .mobile-category .accordion-item .accordion-button {
  height: 50px;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  --border-color: rgba(var(--primary-color));
  border-color: var(--border-color);
  position: relative;
  padding: 0 15px;
  box-shadow: none;
  --text-color: var(--text-white);
  color: var(--text-color);
}
.main-header .header-wrapper .header-container .header-nav .navbar .mobile-category .accordion-item .accordion-button span {
  line-height: 1;
}
.main-header .header-wrapper .header-container .header-nav .navbar .mobile-category .accordion-item .accordion-button:after {
  filter: brightness(200);
}
.main-header .header-wrapper .header-container .header-nav .navbar .mobile-category .accordion-item .category-mobile-menu li {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.main-header .header-wrapper .header-container .header-nav .navbar .mobile-category .accordion-item .category-mobile-menu li a {
  color: var(--text-color);
  font-size: 15px;
  cursor: pointer;
  display: block;
}
.main-header .header-wrapper .header-container .header-nav .navbar .mobile-category .accordion-item .category-mobile-menu li a:hover {
  --text-color: rgba(var(--primary-color));
  color: var(--text-color);
}
.main-header .header-wrapper .header-container .header-nav .navbar .offcanvas {
  overflow-y: auto;
  scrollbar-width: thin;
  border: 0;
}
.main-header .header-wrapper .header-container .header-nav .navbar .offcanvas .btn-close {
  opacity: 1 !important;
  position: absolute;
  right: 10px;
  top: 32px;
}
.main-header .header-wrapper .header-container .header-nav .navbar .offcanvas .btn-close:focus {
  box-shadow: none;
}
.main-header .header-wrapper .header-container .header-nav .navbar .offcanvas .offcanvas-body {
  overflow: visible;
}
.main-header .header-wrapper .header-container .header-nav .navbar .navbar-toggler {
  width: 38px;
  height: 38px;
  line-height: 38px;
  color: var(--text-color);
  box-shadow: none;
}
.main-header .header-wrapper .header-container .header-nav .navbar .navbar-toggler .navbar-toggler-icon {
  font-size: 18px;
}
.main-header .header-wrapper .header-container .header-nav .navbar .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  margin-right: 0;
}
.main-header .header-wrapper .header-container .header-nav .navbar .navbar-brand img {
  height: 40px;
}
.main-header .header-wrapper .header-container .header-nav .navbar .navbar-nav .nav-item .nav-link {
  color: var(--text-color);
  font-weight: 600;
  margin-right: 10px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.main-header .header-wrapper .header-container .header-nav .navbar .navbar-nav .nav-item .nav-link.active, .main-header .header-wrapper .header-container .header-nav .navbar .navbar-nav .nav-item .nav-link:hover {
  --text-color: rgba(var(--primary-color));
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
}
.main-header .header-wrapper .header-container .header-nav .navbar .navbar-right .input-group {
  border: 0;
  position: relative;
}
.main-header .header-wrapper .header-container .header-nav .navbar .navbar-right .input-group span {
  color: var(--text-color);
  border: 0;
  font-weight: 700;
  position: absolute;
  left: 20px;
  z-index: 6;
  width: -moz-max-content;
  width: max-content;
}
.main-header .header-wrapper .header-container .header-nav .navbar .navbar-right .input-group input.form-control {
  background: var(--bs-light);
  color: var(--text-color);
  padding: 0.75rem 0.75rem 0.75rem 3rem;
}
.main-header .header-wrapper .header-container .header-nav .navbar .navbar-right .header-btn a i {
  font-size: 12px;
}
.main-header .header-wrapper .header-container .header-nav .navbar .cart-area .all-category a .user-name, .main-header .header-wrapper .header-container .header-nav .navbar .cart-area .signin-icon, .main-header .header-wrapper .header-container .header-nav .navbar .cart-area .shop-icon {
  width: 32px;
  height: 32px;
  background: transparent;
  font-size: 16px;
  line-height: 32px;
  color: var(--text-color);
  border: 1px solid var(--border-color);
  box-shadow: none;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
}
.main-header .header-wrapper .header-container .header-nav .navbar .cart-area .shop-icon span {
  font-size: 16px;
}
/* ====== view-cart-sidebar ====== */
.view-cart-sidebar .view-cart-offcanvas .cart-close {
  width: 20px;
  height: 20px;
  line-height: 5px;
  background-color: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  font-size: 10px;
  color: var(--text-color);
}
.view-cart-sidebar .view-cart-offcanvas .cart-close:focus {
  box-shadow: none;
}
.view-cart-sidebar .view-cart-offcanvas .cart-close:hover {
  background-color: rgba(var(--primary-color));
  border-color: rgba(var(--primary-color));
  color: var(--text-white);
}
.view-cart-sidebar .view-cart-offcanvas .offcanvas-body {
  position: relative;
  border-top: 1px solid;
  border-color: var(--border-color);
  padding-top: 15px;
}
.view-cart-sidebar .view-cart-offcanvas .view-cart-item-container {
  cursor: pointer;
}
.view-cart-sidebar .view-cart-offcanvas .view-cart-item-container .cart-img img {
  min-width: 65px;
  max-width: 65px;
  height: 65px;
  border-radius: var(--border-radius);
}
.view-cart-sidebar .view-cart-offcanvas .view-cart-item-container .cart-quantity h5 {
  font-size: 14px;
}
.view-cart-sidebar .view-cart-offcanvas .view-cart-bottom {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
}
.view-cart-sidebar .view-cart-offcanvas .view-cart-bottom .view-cart-text {
  border-top: 1px solid;
  border-color: var(--border-color);
}
.view-cart-sidebar .view-cart-offcanvas .view-cart-bottom .view-cart-text span {
  font-size: 18px;
  font-weight: 700;
}
.view-cart-sidebar .view-cart-offcanvas .view-cart-bottom .view-cart-btn a.btn {
  width: 100%;
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}
.view-cart-sidebar .view-cart-offcanvas .view-cart-bottom .view-cart-btn a.btn:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.view-cart-sidebar .view-cart-offcanvas .view-cart-bottom .view-cart-btn a.btn:focus {
  color: var(--text-white);
}
.view-cart-sidebar .view-cart-offcanvas .view-cart-bottom .view-cart-btn a.btn {
  padding: 12px 0;
  text-transform: uppercase;
}
.view-cart-sidebar .view-cart-offcanvas .view-cart-bottom .view-cart-btn a.btn:first-child {
  --bg-color: #ffffff;
  background: var(--bg-color);
  --border-color: #ffffff;
  border-color: var(--border-color);
  --text-color: #111;
  color: var(--text-color);
  box-shadow: var(--box-shadow);
}
.view-cart-sidebar .view-cart-offcanvas .view-cart-bottom .view-cart-btn a.btn:first-child:hover {
  --text-color: #111 !important;
  --border-color: #ffffff !important;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

/* ========= Bottom Navigation Start =========*/
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: var(--bg-color);
  box-shadow: var(--box-shadow);
  z-index: 2;
}
.bottom-nav .nav-item {
  text-align: center;
}
.bottom-nav .nav-item .nav-link {
  color: var(--text-color);
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.bottom-nav .nav-item .nav-link i {
  font-size: 18px;
}
.bottom-nav .nav-item .nav-link:hover {
  color: var(--text-color);
  transition: all 0.3s ease-in;
}
.bottom-nav .nav-item .nav-link.active {
  color: var(--text-color);
}
.bottom-nav .cart-button {
  margin-top: -2.75rem;
  background-color: rgba(var(--primary-color));
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1001;
}
.bottom-nav .cart-button i {
  color: var(--text-white);
  font-size: 20px;
}
.bottom-nav .cart-badge {
  position: absolute;
  bottom: -3px;
  right: -8px;
  background-color: #ffc107;
  color: var(--text-white);
  font-size: 8px;
  font-weight: bold;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 50%;
}

/* ========= Bottom Navigation Ends =========*/
/* ======== Header style Ends =========*/
/* =========== Top bar two start =========*/
.top-bar-two {
  background-color: var(--bg-color);
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.top-bar-two address i {
  font-size: 16px;
}
.top-bar-two .top-end {
  line-height: 40px;
}

.search-bar .fa-magnifying-glass {
  font-size: 16px;
}

.social-icons a {
  color: var(--text-secondary);
  transition: 0.3s;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icons a:hover {
  color: rgba(var(--primary-color));
  transition: 0.3s;
}

.custom-dropdown {
  position: relative;
  cursor: pointer;
}
.custom-dropdown a {
  color: var(--text-secondary);
}
.custom-dropdown a:hover {
  color: var(--text-color);
}
.custom-dropdown .cs-btn .fa-globe {
  font-size: 16px;
}
.custom-dropdown .cs-btn .fa-chevron-down {
  font-size: 12px;
}
.custom-dropdown .drop-menu {
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 10px;
  position: absolute;
  left: 0;
  --bg-color: var(--bg-white);
  background-color: var(--bg-color);
  z-index: 2;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.custom-dropdown .drop-menu li {
  line-height: 14px;
}
.custom-dropdown .drop-menu li a {
  padding: 8px 14px;
  display: inline-block;
  padding-right: 45px;
  transition: all 0.3s ease-in-out;
  width: 100%;
  color: var(--text-color);
}
.custom-dropdown .drop-menu li a:hover {
  --bg-color: rgba(var(--primary-color)) background-color: var(--bg-color);
  color: rgba(var(--primary-color));
  transition: all 0.3s ease-in;
}
.custom-dropdown:hover .drop-menu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  transition: 0.3s;
}

.sticky {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: auto !important;
  --bg-color: var(--bg-white) !important;
  background-color: var(--bg-color) !important;
  z-index: 99;
  animation: sticky 1.1s;
  display: block;
  box-shadow: var(--box-shadow);
}
.sticky .navbar {
  height: auto !important;
}
@keyframes sticky {
  0% {
    top: -50px;
    opacity: 0;
    transition-duration: 1.1s;
  }
  100% {
    top: 0;
    opacity: 1;
    transition-duration: 1.1s;
  }
}

.navbar-two {
  --bg-color: rgba(var(--primary-color), .1);
  background-color: var(--bg-color);
  height: 80px;
  width: 100%;
  border: 1px solid var(--border-color);
}

.nav-toggle {
  background-color: transparent;
  font-size: 20px;
  color: var(--text-color);
}

.nav-menu {
  height: 80px;
  line-height: 80px;
}
.nav-menu > li .nav-link {
  color: var(--text-color);
  font-weight: 500;
}
.nav-menu > li .nav-link.active, .nav-menu > li .nav-link:hover {
  color: rgba(var(--primary-color));
}

.nav-logo {
  height: 80px;
  line-height: 80px;
}
.nav-logo a {
  line-height: 80px;
}
.nav-logo a img {
  max-width: 100%;
  max-height: 42px;
}

.nav-end {
  height: 80px;
  line-height: 80px;
}

.cart .ct-icon {
  font-size: 24px;
  position: relative;
  color: var(--text-color);
}
.cart .ct-icon small {
  position: absolute;
  top: -3px;
  right: -7px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  border-radius: 100px;
  font-size: 12px;
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
  text-align: center;
}

.dark-icon {
  color: var(--text-color);
  background-color: transparent;
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-close {
  filter: var(--filter-color);
}

.offcanvas {
  background-color: var(--bg-color) !important;
  color: var(--text-color);
}

.offcanvas.search-modal {
  height: auto;
  bottom: auto;
}

.theme-toggle {
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  --text-color: var(--text-secondary);
  color: var(--text-color);
}
.theme-toggle span {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
}

/* dark mode logo change */
[data-theme=light] .logo-dark {
  display: none;
}

[data-theme=dark] .logo-dark {
  display: inline;
}

[data-theme=dark] .logo-light {
  display: none;
}

/* Hide both by default */
.sun-icon,
.moon-icon {
  display: none;
}

/* Show correct icon immediately when theme applied */
[data-theme=dark] .sun-icon {
  display: inline;
}

[data-theme=dark] .moon-icon {
  display: none;
}

[data-theme]:not([data-theme=dark]) .sun-icon {
  display: none;
}

[data-theme]:not([data-theme=dark]) .moon-icon {
  display: inline;
}

.mobile-menu .theme-toggle {
  --text-color: var(--text-primary);
}
.mobile-menu .theme-toggle span {
  font-size: 18px;
  line-height: 24px;
}

/* =========== Top bar two Ends =========*/
.btn-1 {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}
.btn-1:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.btn-1:focus {
  color: var(--text-white);
}
.btn-1.danger {
  --bg-color: rgb(197, 61, 43);
  --primary-color: rgb(197, 61, 43);
  border-color: rgba(var(--primary-color));
}

.btn-two {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}
.btn-two:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.btn-two:focus {
  color: var(--text-white);
}
.btn-two {
  background: #ffffff;
  padding: 8px 18px;
  border-color: #ffffff;
  color: #212121;
}
.btn-two:hover {
  background: #ececec;
  border-color: #ececec;
  color: #212121;
}

.theme-3-btn {
  display: inline-flex;
  height: 54px;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: rgba(var(--primary-color));
  border-radius: var(--border-radius);
  color: var(--text-white);
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  line-height: 16px;
  font-weight: 400;
}
.theme-3-btn:hover {
  background-color: transparent;
  border-color: rgba(var(--primary-color));
  color: rgba(var(--primary-color));
}
.theme-3-btn.outline-btn {
  background-color: transparent;
  color: var(--text-color);
  border-color: rgba(var(--primary-color));
}
.theme-3-btn.outline-btn:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
}
.theme-3-btn.no-hover-effect:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
  border: 1px solid transparent;
}

.btn-lg {
  height: 44px;
  padding: 12px 24px;
}

/* ======= hero slider style start ======= */
.hero-section {
  position: relative;
}
.hero-section .hero-slider-wrapper {
  position: relative;
}
.hero-section .hero-slider-wrapper .hero-slider-container {
  overflow: hidden;
}
.hero-section .hero-slider-wrapper .hero-slider-container .autoplay-progress {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: orangered;
}
.hero-section .hero-slider-wrapper .hero-slider-container .autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: rgb(116, 115, 115);
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}
.hero-section .hero-slider-wrapper .hero-slider-container .swiper-wrapper {
  display: flex;
  transition: transform 0.5s infinite;
}
.hero-section .hero-slider-wrapper .hero-slider-container .hero-slider-item {
  position: relative;
  transform: translate3d(0, 0, 0);
}
.hero-section .hero-slider-wrapper .hero-slider-container .hero-slider-item .hero-slider-thumb {
  width: 100%;
  padding-top: 91.5%;
  border-radius: 12px;
  position: relative;
}
.hero-section .hero-slider-wrapper .hero-slider-container .hero-slider-item .hero-slider-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 12px;
}
.hero-section .hero-slider-wrapper .hero-slider-container .hero-pagination {
  position: absolute;
  text-align: right;
  right: 30px;
  left: auto;
  background-color: #fff;
  display: flex;
  align-items: center;
  width: auto;
  height: auto;
  border-radius: 100px;
  bottom: 15px;
  padding: 6px;
}
.hero-section .hero-slider-wrapper .hero-slider-container .hero-pagination .swiper-pagination-bullet {
  background-color: rgba(158, 157, 157, 0.7882352941);
  opacity: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.hero-section .hero-slider-wrapper .hero-slider-container .hero-pagination .swiper-pagination-bullet-active {
  background-color: #000;
  opacity: 0.8;
}
.hero-section .hero-slider-wrapper .hero-slider-container .next-btn,
.hero-section .hero-slider-wrapper .hero-slider-container .previous-btn {
  color: var(--text-color);
  background: var(--bg-color);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  transition: all 0.4s ease;
  margin-top: 0;
  visibility: hidden;
  opacity: 0;
}
.hero-section .hero-slider-wrapper .hero-slider-container .next-btn:after,
.hero-section .hero-slider-wrapper .hero-slider-container .previous-btn:after {
  font-size: 12px;
  font-weight: 600;
}
.hero-section .hero-slider-wrapper .hero-slider-container .next-btn:hover,
.hero-section .hero-slider-wrapper .hero-slider-container .previous-btn:hover {
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  transition: all 0.4s ease;
}
.hero-section .hero-slider-wrapper .hero-slider-container .next-btn:hover:after,
.hero-section .hero-slider-wrapper .hero-slider-container .previous-btn:hover:after {
  --text-color: var(--text-white);
  color: var(--text-color);
}
.hero-section .hero-slider-wrapper:hover .next-btn, .hero-section .hero-slider-wrapper:hover .previous-btn {
  visibility: visible;
  opacity: 1;
  transition: all 0.4s ease;
}
.hero-section .hero-right-top {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: 0.4s;
  width: 100%;
  position: relative;
  padding-top: 30.2%;
}
.hero-section .hero-right-top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s;
  border-radius: 12px;
}
.hero-section .hero-right-top:hover img {
  transform: scale(1.1);
  transition: 0.4s;
}
.hero-section .hero-right-img {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  transition: 0.4s;
  border-radius: 12px;
}
.hero-section .hero-right-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  transition: 0.4s;
}
.hero-section .hero-right-img:hover img {
  transform: scale(1.1);
  transition: 0.4s;
}

.hero-bg-1 {
  --bg-color: #066e69;
  background-color: var(--bg-color);
}

.hero-section-two .hero-bg-1 {
  color: var(--text-white);
}
.hero-section-two .hero-bg-1 p {
  color: var(--text-white);
}
.hero-section-two .hero-bg-1 .h-shape-1,
.hero-section-two .hero-bg-1 .h-shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0.1;
  max-width: 100%;
  height: 100%;
}
.hero-section-two .hero-bg-1 .h-shape-1 {
  right: 0;
  left: auto;
  bottom: -10px;
}

.hero-title {
  font-size: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 16px;
}

.title-2 {
  font-size: 60px;
  font-weight: 600;
  line-height: clamp(36px, 6vw, 70px);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

@media (max-width: 576px) {
  .title-2 {
    letter-spacing: 1px;
  }
}
.hero-p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

.features-grid {
  margin-top: -6.5%;
  padding-top: 0;
}

.feature-box {
  color: var(--text-secondary);
  text-align: center;
  width: 180px;
  --bg-color: var(--bg-white);
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feature-box img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 16px;
}

.feature-box a {
  display: block;
  font-weight: 500;
  font-size: 16px;
  margin: 0 16%;
  color: var(--text-secondary);
}
.feature-box a:hover {
  color: rgba(var(--primary-color));
}

@media (max-width: 576px) {
  .feature-box {
    width: 45%;
  }
}
@media (max-width: 991px) {
  .features-grid {
    margin-top: 0;
  }
}
/* ======= hero slider style start ======= */
[dir=rtl] .hero-title svg {
  transform: scale(-1, 1);
}

.btn-1 {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-1:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-1:focus {
  color: var(--text-white);
}

.btn-1.danger {
  --bg-color: rgb(197, 61, 43);
  --primary-color: rgb(197, 61, 43);
  border-color: rgba(var(--primary-color));
}

.btn-two {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-two:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-two:focus {
  color: var(--text-white);
}

.btn-two {
  background: #ffffff;
  padding: 8px 18px;
  border-color: #ffffff;
  color: #212121;
}

.btn-two:hover {
  background: #ececec;
  border-color: #ececec;
  color: #212121;
}

.theme-3-btn {
  display: inline-flex;
  height: 54px;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: rgba(var(--primary-color));
  border-radius: var(--border-radius);
  color: var(--text-white);
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  line-height: 16px;
  font-weight: 400;
}

.theme-3-btn:hover {
  background-color: transparent;
  border-color: rgba(var(--primary-color));
  color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn {
  background-color: transparent;
  color: var(--text-color);
  border-color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
}

.theme-3-btn.no-hover-effect:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
  border: 1px solid transparent;
}

.btn-lg {
  height: 44px;
  padding: 12px 24px;
}

/* ======= Selling Product Start ======= */
.best-selling-product {
  position: relative;
}

.section-header {
  animation-name: "animate__fadeInUp";
  animation-duration: 1s;
  animation-delay: 0.4s;
  display: block;
}
.section-header .sub-heading {
  margin-bottom: 10px;
}
.section-header .sub-heading .badge {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75rem;
  color: var(--text-color) !important;
  padding: 0.5rem 0.75rem;
  display: inline-flex;
  align-items: center;
}
.section-header .sub-heading .badge .badge-dot {
  border-radius: 9999px;
  padding: 3px;
  background: rgba(var(--primary-color));
}
.section-header .main-heading {
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 12px;
}
.section-header .main-heading h2 {
  font-size: 2.5rem;
  font-weight: 600;
  border-bottom: 2px solid var(--bg-color);
  display: inline-block;
  margin-bottom: -2px;
}
.section-header .sub-title p {
  font-size: 16px;
  --text-color: var(--text-secondary);
  color: var(--text-color);
  font-weight: 400;
  margin: 0 2%;
}

.product-selling-slider {
  position: relative;
}
.product-selling-slider .slider-navigation {
  width: 100%;
  height: 100%;
}
.product-selling-slider .slider-navigation button {
  color: var(--text-color);
  background: var(--bg-color);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  transition: 0.3s;
  transition: all 0.4s ease;
  margin-top: 0;
  top: 35%;
  visibility: hidden;
  opacity: 0;
}
.product-selling-slider .slider-navigation button:after {
  font-size: 12px;
  font-weight: 600;
}
.product-selling-slider .slider-navigation button:hover {
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  transition: all 0.4s ease;
}
.product-selling-slider .slider-navigation button:hover:after {
  --text-color: var(--text-white);
  color: var(--text-color);
}
.product-selling-slider:hover {
  transition: 0.3s;
}
.product-selling-slider:hover button {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
.product-selling-slider .pr-sell-pagination {
  bottom: 0;
}
.product-selling-slider .pr-sell-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #ccc;
  opacity: 0.9;
}
.product-selling-slider .pr-sell-pagination .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
  border-color: #fff;
}

.product-selling-item .product-selling-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 8px;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}
.product-selling-item .product-selling-thumb a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-selling-item .product-selling-thumb .pr-thumb-btn {
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: 0.3s;
}
.product-selling-item .product-selling-thumb .pr-thumb-btn .btn-one {
  transition: 0.3s;
  position: relative;
  background: rgba(var(--primary-color)) !important;
  color: var(--text-white) !important;
  border-radius: 0;
  border: none;
  padding: 6px 0;
  font-size: 16px;
  font-weight: 500;
  transition: 0.4s;
  display: inline-block;
  width: 100%;
}
.product-selling-item .product-selling-thumb .pr-thumb-btn .btn-one:hover:after {
  bottom: 0;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
.product-selling-item .product-selling-thumb .badge {
  position: absolute;
  top: 15px;
  left: 10px;
}
.product-selling-item:hover .pr-thumb-btn {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  transform: none;
}
.product-selling-item .product-selling-content {
  word-spacing: 1px;
}
.product-selling-item .product-selling-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 5px;
}
.product-selling-item .product-selling-content h4 a {
  color: var(--text-color);
}
.product-selling-item .product-selling-content h4 a:hover {
  --text-color: rgba(var(--primary-color));
  color: var(--text-color);
}
.product-selling-item .product-selling-content .price {
  font-size: 15px;
  font-weight: 600;
  --text-color: rgba(var(--primary-color));
  color: var(--text-color);
  word-spacing: 0;
}
.product-selling-item .product-selling-content .price small {
  font-size: 12px;
  color: #ccc;
  margin-left: 3px;
}
.product-selling-item .product-selling-content.premium-sell-content {
  background: #000;
}
.product-selling-item-2 {
  height: auto;
}
.product-selling-item-2 .product-selling-thumb .pr-thumb-btn .btn-view:after {
  content: "\f06e";
}

/* ======= Selling Product Ends ======= */
.review-section .review-btn button {
  background: var(--btn-secondary);
  font-size: 13px;
  text-transform: uppercase;
  border-color: var(--btn-secondary);
  padding: 10px 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.review-section .review-btn button:focus {
  background: var(--btn-secondary);
  border-color: var(--btn-secondary);
}
.review-section .review-btn button:first-child {
  background: var(--whitesmoke);
  color: var(--text-color);
  border-color: var(--whitesmoke);
}

.text-watermark {
  font-size: 100px;
  font-weight: 400;
  line-height: 1em;
  color: rgba(10, 10, 10, 0.0392156863);
  letter-spacing: 2px;
  text-wrap: nowrap;
}

.btn-1 {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-1:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-1:focus {
  color: var(--text-white);
}

.btn-1.danger {
  --bg-color: rgb(197, 61, 43);
  --primary-color: rgb(197, 61, 43);
  border-color: rgba(var(--primary-color));
}

.btn-two {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-two:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-two:focus {
  color: var(--text-white);
}

.btn-two {
  background: #ffffff;
  padding: 8px 18px;
  border-color: #ffffff;
  color: #212121;
}

.btn-two:hover {
  background: #ececec;
  border-color: #ececec;
  color: #212121;
}

.theme-3-btn {
  display: inline-flex;
  height: 54px;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: rgba(var(--primary-color));
  border-radius: var(--border-radius);
  color: var(--text-white);
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  line-height: 16px;
  font-weight: 400;
}

.theme-3-btn:hover {
  background-color: transparent;
  border-color: rgba(var(--primary-color));
  color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn {
  background-color: transparent;
  color: var(--text-color);
  border-color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
}

.theme-3-btn.no-hover-effect:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
  border: 1px solid transparent;
}

.btn-lg {
  height: 44px;
  padding: 12px 24px;
}

.edu-tools-item {
  transition: 0.4s;
}
.edu-tools-item .edu-tools-thumb {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}
.edu-tools-item .edu-tools-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.edu-tools-item .edu-tools-thumb .product-cart-icon {
  background: rgba(var(--primary-color)) !important;
  color: var(--text-white) !important;
  border-radius: 0;
  border: none;
  padding: 6px 0;
  font-size: 16px;
  font-weight: 500;
  transition: 0.4s;
  display: inline-block;
  position: absolute;
  top: 10px;
  right: -10px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  transition: 0.4s;
  visibility: hidden;
  opacity: 0;
}
.edu-tools-item .edu-tools-thumb .product-cart-icon:hover {
  transition: 0.3s;
}
.edu-tools-item .edu-tools-thumb .product-cart-icon:hover i {
  opacity: 0.8;
  transition: 0.3s;
}
.edu-tools-item .edu-tools-thumb .badge {
  position: absolute;
  top: 10px;
  left: 10px;
}
.edu-tools-item .edu-tools-bottom h4 {
  font-size: 14px;
  font-weight: 600;
  --text-color: var(--text-white);
  color: var(--text-color);
}
.edu-tools-item .edu-tools-bottom h4:hover {
  --text-color: rgba(var(--primary-color));
  color: var(--text-color) !important;
}
.edu-tools-item .edu-tools-bottom span {
  font-size: 14px;
  font-weight: 600;
  --text-color: var(--text-white);
  color: var(--text-color);
}
.edu-tools-item:hover .edu-tools-thumb .product-cart-icon {
  right: 10px;
  opacity: 1;
  visibility: visible;
  transition: 0.4s;
}

@media screen and (min-width: 991px) {
  .offcanvas-lg-show {
    position: static;
    transform: none !important;
    visibility: visible;
    background: transparent;
    width: 100%;
  }
  .offcanvas-lg-show .offcanvas-body {
    padding: 0;
    scrollbar-width: thin;
  }
  .user-dashboard .offcanvas.user-dashboard-nav {
    position: static;
    transform: none !important;
    visibility: visible;
  }
  .blog-category-container .offcanvas {
    position: static;
    transform: none !important;
    visibility: visible;
  }
  .pt-lg-60 {
    padding-top: 60px !important;
  }
  .mb-lg-60 {
    margin-bottom: 60px !important;
  }
}
@media screen and (max-width: 768px) {
  .blog-item {
    height: auto !important;
    padding: 0.875rem !important;
  }
  .blog-page-container {
    height: auto !important;
    padding: 0.875rem !important;
  }
  .blog-page-container .blog-post-content h5 a {
    font-size: 20px !important;
  }
  .filter-menu .filter-list li a {
    padding: 5px 10px !important;
    font-size: 12px !important;
  }
  .edu-tools-item .edu-tools-thumb {
    padding-top: 100% !important;
    /* Square aspect ratio */
  }
  .premium-subsciption {
    padding-top: 26px !important;
  }
  .premium-subsciption .premium-right-container .premium-top .breadcrumb .breadcrumb-item {
    font-size: 14px !important;
  }
  .btn-1 {
    padding: 12px 16px !important;
    font-size: 14px !important;
  }
  .btn-1 i {
    font-size: 10px !important;
  }
  .ab-thumb {
    width: 100px !important;
    height: 100px !important;
  }
  .swiper-pagination {
    display: block;
  }
  .hero-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  /* ===== responsive css ==*/
  .main-header .header-nav .navbar .navbar-brand img {
    height: 26px !important;
  }
  .main-header .header-nav .navbar .nav-right .search.offcanvas-search {
    position: relative;
    cursor: pointer;
  }
  .main-header .header-nav .navbar .nav-right .search.offcanvas-search .searchbox.offcanvas-searchbox {
    position: absolute;
    top: -15px;
    left: 100% !important;
    right: -50px;
    transform: translateX(20%);
    width: 280px;
    height: 50px;
    background: #353535;
    text-align: left;
    line-height: 50px;
    z-index: 9;
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
  }
  .main-header .header-nav .navbar .nav-right .search.offcanvas-search:hover .searchbox.offcanvas-searchbox {
    top: -15px;
    left: 100% !important;
    right: -50px;
    transform: translateX(20%);
  }
  .main-header .header-nav .navbar .nav-right .search .search-icon {
    background: none !important;
    color: #fff !important;
    width: auto !important;
    margin-right: 10px;
  }
  .mobile-menu .cart .ct-icon small {
    position: absolute;
    top: -5px;
    right: -8px;
  }
  .custom-dropdown {
    width: 100% !important;
  }
  .custom-dropdown .drop-menu {
    width: 100% !important;
    margin-top: 10px;
  }
  .navbar-two {
    height: auto !important;
  }
  .nav-menu {
    height: auto !important;
    line-height: 24px;
    width: 100%;
  }
  .nav-logo {
    line-height: 24px;
  }
  .nav-end {
    height: auto !important;
    line-height: 24px;
  }
  .category-section .category-top .category-tab ul {
    border: 1px solid;
    border-color: var(--border-color);
    padding: 0.75rem;
    box-shadow: var(--box-shadow);
  }
  .category-section .category-top .category-tab ul li a {
    padding: 10px 22px !important;
  }
  .toggle-switch {
    width: 60px;
    height: 30px;
  }
  .slider::before {
    height: 22px;
    width: 22px;
  }
  input:checked ~ .slider::before {
    transform: translateX(30px);
  }
  .faq-item {
    border-right: 0 !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .shop-grid-banner-item h2 {
    font-size: 35px !important;
  }
  .shop-content-area .shop-content-topbar {
    color: var(--text-white);
  }
  .shop-content-area .shop-content-topbar .shop-content-tools {
    width: 100%;
  }
  .shop-content-area .shop-content-topbar .shop-content-tools:first-child {
    border-bottom: 1px solid;
    border-color: rgba(255, 255, 255, 0.2);
  }
  .blog-item .blog-content h3 {
    font-size: 20px !important;
  }
  .blog-details .blog-details-container .blog-details-thumb {
    width: 100% !important;
    height: auto !important;
  }
  footer .copy-right {
    padding-bottom: 100px !important;
  }
  .floating-container {
    bottom: 75px !important;
  }
}
@media screen and (max-width: 576px) {
  .main-header .header-nav .navbar .navbar-toggler .navbar-toggler-icon {
    font-size: 18px;
  }
  .shop-grid-banner-item h2 {
    font-size: 24px !important;
  }
  #dynamic-modal .modal-content .modal-body .pr-details-container .product-thumb {
    width: 100% !important;
    padding-top: 75% !important;
  }
  .ab-thumb {
    width: 50px !important;
    height: 50px !important;
  }
  .custom-section-title {
    font-size: 20px !important;
  }
}
.btn-1 {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-1:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-1:focus {
  color: var(--text-white);
}

.btn-1.danger {
  --bg-color: rgb(197, 61, 43);
  --primary-color: rgb(197, 61, 43);
  border-color: rgba(var(--primary-color));
}

.btn-two {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-two:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-two:focus {
  color: var(--text-white);
}

.btn-two {
  background: #ffffff;
  padding: 8px 18px;
  border-color: #ffffff;
  color: #212121;
}

.btn-two:hover {
  background: #ececec;
  border-color: #ececec;
  color: #212121;
}

.theme-3-btn {
  display: inline-flex;
  height: 54px;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: rgba(var(--primary-color));
  border-radius: var(--border-radius);
  color: var(--text-white);
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  line-height: 16px;
  font-weight: 400;
}

.theme-3-btn:hover {
  background-color: transparent;
  border-color: rgba(var(--primary-color));
  color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn {
  background-color: transparent;
  color: var(--text-color);
  border-color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
}

.theme-3-btn.no-hover-effect:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
  border: 1px solid transparent;
}

.btn-lg {
  height: 44px;
  padding: 12px 24px;
}

/* ======== Category Style start ======= */
.category-section {
  position: relative;
}

.category-top .category-tab {
  margin: auto;
  overflow: auto;
  scrollbar-width: thin;
}
.category-top .category-tab ul {
  background-color: var(--bg-color);
}
.category-top .category-tab ul li {
  margin-left: 0;
  text-wrap: nowrap;
}
.category-top .category-tab ul li a.btn-1 {
  font-size: 14px;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.category-top .category-tab ul li a.btn-1.active {
  background: var(--bg-color);
  color: var(--text-white);
}

.category-slider {
  position: relative;
  transition: 0.3s;
}
.category-slider .category-swiper {
  position: relative;
}
.category-slider .category-item {
  overflow: hidden;
}
.category-slider .category-item .category-thumb {
  width: 100%;
  position: relative;
  margin-bottom: 8px;
  padding-top: 100%;
  overflow: hidden;
}
.category-slider .category-item .category-thumb img {
  border-radius: 12px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.category-slider .category-item .category-thumb .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0;
}
.category-slider .category-item .category-bottom h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.category-slider .category-item .category-bottom h4 a {
  color: var(--text-white);
}
.category-slider .category-item .category-bottom .price {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  display: block;
  margin-bottom: 8px;
}
.category-slider .category-item .category-bottom button.btn {
  position: relative;
  background: rgba(var(--primary-color)) !important;
  color: var(--text-white) !important;
  border-radius: 0;
  border: none;
  padding: 6px 0;
  font-size: 16px;
  font-weight: 500;
  transition: 0.4s;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding: 12px 10px;
  font-weight: 600;
}
.category-slider .category-item .category-bottom button.btn span {
  display: block !important;
  line-height: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  font-size: 14px;
}
.category-slider .swiper-navigation .category-next,
.category-slider .swiper-navigation .category-prev {
  color: #202020;
  background: var(--bg-color);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  transition: 0.3s;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}
.category-slider .swiper-navigation .category-next:hover,
.category-slider .swiper-navigation .category-prev:hover {
  color: var(--text-white);
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  transition: all 0.4s ease;
}
.category-slider .swiper-navigation .category-next:hover:after,
.category-slider .swiper-navigation .category-prev:hover:after {
  color: var(--text-white);
}
.category-slider .swiper-navigation .category-prev:after,
.category-slider .swiper-navigation .category-next:after {
  position: absolute;
  font-size: 12px;
  color: var(--text-color);
  transition: 0.3s;
  font-weight: 600;
}
.category-slider:hover {
  transition: 0.3s;
}
.category-slider:hover .category-next,
.category-slider:hover .category-prev {
  opacity: 1;
  visibility: visible;
}

.browse__category .swiper-nav-btn .swiper-button-next:after,
.browse__category .swiper-nav-btn .swiper-button-prev:after {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}
.browse__category .swiper-nav-btn .swiper-button-next:hover:after,
.browse__category .swiper-nav-btn .swiper-button-prev:hover:after {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
  transition: all 0.3s ease-in;
}
.browse__category-swiper .swiper-slide .card {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.browse__category-swiper .swiper-slide .card .card-header {
  width: 100%;
  padding-top: 75%;
  position: relative;
  border: 0;
}
.browse__category-swiper .swiper-slide .card .card-header img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.browse__category-swiper .swiper-slide .card .card-body h5 a {
  color: var(--text-color);
  transition: all 0.2s ease-in-out;
}
.browse__category-swiper .swiper-slide .card:hover .card-body h5 a {
  color: var(--text-color);
  transition: all 0.2s ease-in;
}
.browse__category-swiper .swiper-slide .card:hover {
  box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in;
}

/* ======== Category Style Ends ======= */
/* ======= Service SEction Start ========= */
.service-section .service-box img {
  width: 80px;
  height: 80px;
}
.service-section .service-box .service-content h4 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}
.service-section .service-box .service-content p {
  font-size: 16px;
}

[dir=rtl] .benefit-item::after {
  content: "";
  right: auto;
  left: 0;
}

/* ======= Service SEction Ends ========= */
.btn-1 {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-1:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-1:focus {
  color: var(--text-white);
}

.btn-1.danger {
  --bg-color: rgb(197, 61, 43);
  --primary-color: rgb(197, 61, 43);
  border-color: rgba(var(--primary-color));
}

.btn-two {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-two:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-two:focus {
  color: var(--text-white);
}

.btn-two {
  background: #ffffff;
  padding: 8px 18px;
  border-color: #ffffff;
  color: #212121;
}

.btn-two:hover {
  background: #ececec;
  border-color: #ececec;
  color: #212121;
}

.theme-3-btn {
  display: inline-flex;
  height: 54px;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: rgba(var(--primary-color));
  border-radius: var(--border-radius);
  color: var(--text-white);
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  line-height: 16px;
  font-weight: 400;
}

.theme-3-btn:hover {
  background-color: transparent;
  border-color: rgba(var(--primary-color));
  color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn {
  background-color: transparent;
  color: var(--text-color);
  border-color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
}

.theme-3-btn.no-hover-effect:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
  border: 1px solid transparent;
}

.btn-lg {
  height: 44px;
  padding: 12px 24px;
}

/* ======= Blog section Start ======== */
.blog-section {
  position: relative;
  background: var(--bg-color);
}
.blog-section .blog-btn button {
  border: 2px solid var(--border-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-color);
  padding: 10px 15px;
  letter-spacing: -0.5px;
}
.blog-section .blog-btn button:hover {
  border-color: var(--border-rgba-4);
}

.blog-item {
  transition: 0.4s;
  overflow: hidden;
  padding: 1.5rem;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
  background-color: var(--bg-color);
}
.blog-item .blog-thumb {
  width: 100%;
  height: 250px;
  cursor: pointer;
}
.blog-item .blog-thumb img {
  transition: 0.3s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-item .blog-content span {
  font-size: 13px;
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}
.blog-item .blog-content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-item .blog-content h3 a {
  color: var(--text-color);
  transition: 0.3s;
}
.blog-item .blog-content h3 a:hover {
  --text-color: rgba(var(--primary-color));
  transition: 0.3s;
}
.blog-item .blog-content p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--text-color);
  border-bottom: 1px dashed;
  border-color: var(--border-color);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.blog-item .blog-content h4 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.blog-item .blog-content h4 a {
  color: var(--text-color);
  transition: 0.4s;
  text-transform: capitalize;
  font-size: 17px;
  line-height: 1;
}
.blog-item .blog-content h4 a i {
  transition: 0.5s;
  font-size: 15px;
}
.blog-item .blog-content h4 a:hover {
  transition: 0.5s;
  --text-color: rgba(var(--primary-color));
}
.blog-item .blog-content h4 a:hover i {
  margin-left: 1rem !important;
  transition: 0.5s;
}
.blog-item:hover .blog-thumb img {
  transition: 0.6s;
  transform: scale(1.1);
}

/* ======= Blog section Ends ======== */
/* ===== Blog page style Start =======*/
.blog-page-container {
  transition: 0.4s;
  overflow: hidden;
  border: 1px solid;
  border-color: var(--border-color);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
}
.blog-page-container .blog-wrapper {
  position: relative;
}
.blog-page-container .blog-wrapper .blog-img-thumb {
  position: relative;
  transition: 0.6s;
  z-index: 0;
  transition: opacity 0.7s ease;
  width: 100%;
  height: 250px;
  color: var(--text-color);
}
.blog-page-container .blog-wrapper .blog-img-thumb img {
  transition: 0.6s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-page-container .blog-wrapper .blog-img-thumb .blog-date {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--bg-color);
  box-shadow: var(--box-shadow);
  border-radius: 8px;
  text-align: center;
  display: inline-block;
  min-width: 53px;
  line-height: 1;
  z-index: 2;
}
.blog-page-container .blog-wrapper .blog-img-thumb .blog-date span {
  display: block;
}
.blog-page-container .blog-wrapper .blog-img-thumb .blog-date span:first-child {
  font-size: 24px;
  padding-top: 6px;
  padding-bottom: 4px;
  font-weight: 600;
}
.blog-page-container .blog-wrapper .blog-img-thumb .blog-date span:last-child {
  padding-top: 2px;
  padding-bottom: 8px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
}
.blog-page-container .blog-wrapper .blog-img-thumb:after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 0;
}
.blog-page-container .blog-wrapper .blog-post-category {
  display: inline-block;
  background: var(--bg-color);
  padding: 4px 10px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 5px;
  line-height: 0;
}
.blog-page-container .blog-wrapper .blog-post-category span {
  font-size: 12px;
  display: inline-block;
  text-transform: uppercase;
  line-height: 1;
}
.blog-page-container .blog-wrapper:hover .blog-img-thumb img {
  transition: 0.6s;
  transform: scale(1.1);
}
.blog-page-container .blog-post-content h5 {
  margin-bottom: 20px;
}
.blog-page-container .blog-post-content h5 a {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-color);
  transition: 0.3s;
}
.blog-page-container .blog-post-content h5 a:hover {
  --text-color: rgba(var(--primary-color));
  color: var(--text-color);
  transition: 0.3s;
}
.blog-page-container .blog-post-content .meta-author .tooltip-master {
  cursor: pointer;
  position: relative;
}
.blog-page-container .blog-post-content .meta-author .tooltip-master .tooltips {
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}
.blog-page-container .blog-post-content .meta-author .tooltip-master .tooltips .tooltips-inner {
  background: var(--bg-color);
  box-shadow: var(--box-shadow);
  padding: 8px;
  border-radius: 5px;
  position: absolute;
  top: -42px;
  left: -18px;
  z-index: 1;
}
.blog-page-container .blog-post-content .meta-author .tooltip-master .tooltips .tooltips-inner a {
  color: var(--text-color);
  transition: all 0.4s ease-in-out;
}
.blog-page-container .blog-post-content .meta-author .tooltip-master .tooltips .tooltips-inner a:hover {
  --text-color: rgba(var(--primary-color));
  color: var(--text-color);
  transition: all 0.4s ease-in-out;
}
.blog-page-container .blog-post-content .meta-author .tooltip-master .tooltips .tootip-arrow {
  border: 1px solid;
  border-width: 10px;
  border-color: var(--border-color);
  position: absolute;
  top: -19px;
  transform: rotate(135deg);
  border-width: 10px 0 0 10px;
  left: 10px;
  z-index: 0;
}
.blog-page-container .blog-post-content .meta-author .tooltip-master:after {
  content: "\f1e0";
  font-size: 16px;
  color: var(--text-color);
  font-family: "fontawesome";
  margin-left: 5px;
}
.blog-page-container .blog-post-content .meta-author .tooltip-master:hover .tooltips {
  visibility: visible;
  opacity: 1;
  transition: all 0.4s ease;
}
.blog-page-container .blog-post-content .meta-author img {
  width: 20px;
  height: 20px;
}
.blog-page-container .blog-post-content .meta-author a {
  font-size: 15px;
  color: var(--text-color);
}
.blog-page-container .blog-post-content .meta-author .icon {
  font-size: 17px;
  cursor: pointer;
}
.blog-page-container .blog-post-content .disc {
  font-size: 16px;
  border-bottom: 1px dashed;
  border-color: var(--border-color);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.blog-page-container .blog-post-content .blg-btn {
  font-size: 15px;
  text-transform: uppercase;
  color: var(--text-color);
  font-weight: 600;
}
.blog-page-container .blog-post-content .blg-btn i {
  transition: 0.5s;
}
.blog-page-container .blog-post-content .blg-btn:hover {
  --text-color: rgba(var(--primary-color));
  color: var(--text-color);
}
.blog-page-container .blog-post-content .blg-btn:hover i {
  margin-left: 1rem !important;
  transition: 0.5s;
}
.blog-page-container:hover .blog-img-thumb:after {
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}

/* ===== Blog page style ends =======*/
.btn-1 {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-1:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-1:focus {
  color: var(--text-white);
}

.btn-1.danger {
  --bg-color: rgb(197, 61, 43);
  --primary-color: rgb(197, 61, 43);
  border-color: rgba(var(--primary-color));
}

.btn-two {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-two:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-two:focus {
  color: var(--text-white);
}

.btn-two {
  background: #ffffff;
  padding: 8px 18px;
  border-color: #ffffff;
  color: #212121;
}

.btn-two:hover {
  background: #ececec;
  border-color: #ececec;
  color: #212121;
}

.theme-3-btn {
  display: inline-flex;
  height: 54px;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: rgba(var(--primary-color));
  border-radius: var(--border-radius);
  color: var(--text-white);
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  line-height: 16px;
  font-weight: 400;
}

.theme-3-btn:hover {
  background-color: transparent;
  border-color: rgba(var(--primary-color));
  color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn {
  background-color: transparent;
  color: var(--text-color);
  border-color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
}

.theme-3-btn.no-hover-effect:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
  border: 1px solid transparent;
}

.btn-lg {
  height: 44px;
  padding: 12px 24px;
}

/* ======= blog-details ========*/
.blog-details .blog-filter {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}
.blog-details .blog-filter:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.blog-details .blog-filter:focus {
  color: var(--text-white);
}
.blog-details .blog-details-container {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  background-color: var(--bg-gray);
}
.blog-details .blog-details-container .blog-header .title {
  font-size: 35px;
  font-weight: 600;
  color: var(--text-color);
}
.blog-details .blog-details-container .blog-header .meta-author li {
  color: var(--text-color);
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 500;
}
.blog-details .blog-details-container .blog-header .meta-author li img {
  width: 20px;
  height: 20px;
}
.blog-details .blog-details-container .blog-header .meta-author li .author {
  color: var(--text-color);
  transition: 0.2s;
}
.blog-details .blog-details-container .blog-header .meta-author li .author:hover {
  color: var(--text-color);
  transition: 0.2s;
}
.blog-details .blog-details-container .blog-details-thumb {
  width: 800px;
  height: 500px;
  padding: 24px;
  position: relative;
}
.blog-details .blog-details-container .blog-details-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details .blog-details-container .blog-details-thumb .badge {
  background: var(--bg-color);
  color: var(--text-color);
  box-shadow: var(--box-shadow);
  position: absolute;
  top: 40px;
  right: 40px;
  padding: 8px 12px;
}
.blog-details .blog-details-container .blog-details-thumb .badge span:first-child {
  font-size: 28px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.blog-details .blog-details-container .blog-details-thumb .badge span:last-child {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.blog-details .blog-details-container article p {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 500;
}
.blog-details .blog-details-container article p strong,
.blog-details .blog-details-container article ul li strong {
  color: var(--text-color);
}
.blog-details .blog-details-container article .list-container li {
  list-style: disc;
  margin-left: 20px;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.5;
}
.blog-details .blog-details-container article .list-container li::marker {
  font-size: 18px;
}
.blog-details .blog-footer {
  padding: 24px;
}
.blog-details .blog-footer .blog-social a {
  background: #365493;
  color: var(--text-white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 400;
  margin-right: 5px;
  text-align: center;
}
.blog-details .blog-footer .blog-social a:nth-child(2) {
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
}
.blog-details .blog-footer .blog-social a:nth-child(3) {
  background: #2f96c3;
}
.blog-details .blog-footer .pagination .page-item {
  width: 33.33%;
}
.blog-details .blog-footer .pagination .page-item .pagination-link {
  font-size: 13px;
  color: var(--text-color);
}
.blog-details .blog-footer .pagination .page-item .pagination-link:hover {
  --text-color: rgba(var(--primary-color)) !important;
}
.blog-details .blog-category-container .offcanvas {
  color: var(--text-color);
  background: var(--bg-color) !important;
  border: 0;
}
.blog-details .blog-category-container .offcanvas .offcanvas-header button.btn {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}
.blog-details .blog-category-container .offcanvas .offcanvas-header button.btn:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.blog-details .blog-category-container .offcanvas .offcanvas-header button.btn:focus {
  color: var(--text-white);
}
.blog-details .blog-category-container .offcanvas .offcanvas-header button.btn {
  border-radius: 0;
  padding: 12px;
}
.blog-details .blog-category-container .offcanvas .offcanvas-body {
  box-shadow: none;
  scrollbar-width: thin;
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item {
  padding: 30px;
  margin-bottom: 20px;
  background-color: var(--bg-gray);
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item .blg-search {
  position: relative;
  width: 100%;
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item .blg-search .form-control {
  height: 60px;
  line-height: 60px;
  padding-right: 60px;
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item .blg-search .magnify {
  position: absolute;
  right: 16px;
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item .category-badge {
  padding: 3px 10px;
  line-height: 1;
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item h4 {
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-color);
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item .category-list li:not(:last-child) {
  margin-bottom: 15px;
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item .category-list li a {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item .category-list li .category-list-link {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  width: 100%;
  position: relative;
  padding: 16px 20px;
  padding-left: 35px;
  background-color: var(--bg-color);
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item .category-list li .category-list-link:after {
  content: "";
  background-color: var(--text-color);
  width: 4px;
  height: 4px;
  position: absolute;
  left: 20px;
  border-radius: 50%;
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item .category-list li .category-list-link:hover {
  --text-color: rgba(var(--primary-color));
  transition: 0.3s;
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item .category-list.recent-post li {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item .category-list.recent-post li div:first-child a {
  width: 80px !important;
  height: 80px !important;
  display: block;
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item .category-list.recent-post li div:first-child a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item .category-list.recent-post li div:last-child h5 {
  line-height: 18px;
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item .category-list.recent-post li div:last-child h5 a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  transition: 0.3s;
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item .category-list.recent-post li div:last-child h5 a:hover {
  color: var(--text-color);
  transition: 0.3s;
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item .category-list.recent-post li div:last-child p {
  font-size: 14px;
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item .category-list.recent-post li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item .category-list.our-instagram li a {
  width: 80px;
  height: 80px;
  background: #6f7073;
}
.blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item:last-child {
  margin-bottom: 0 !important;
  border: 0;
  scrollbar-width: none;
}

.tags a {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  color: var(--text-color);
  padding: 8px 16px;
  text-transform: capitalize;
  margin-bottom: 6px;
  margin-right: 2px;
  border: 1px solid rgba(133, 133, 133, 0.2);
  transition: 0.3s;
}
.tags a:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
  transition: 0.3s;
}
.tags.two a {
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: 0.3s;
  font-size: 16px;
}
.tags.two a:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
  transition: 0.3s;
}

body[data-theme=dark] .blog-details .blog-details-container {
  background-color: color-mix(in srgb, var(--bg-gray) 100%, transparent);
}
body[data-theme=dark] .blog-details article h1, body[data-theme=dark] .blog-details article h2, body[data-theme=dark] .blog-details article h3, body[data-theme=dark] .blog-details article h4, body[data-theme=dark] .blog-details article h5, body[data-theme=dark] .blog-details article h6 {
  color: var(--text-color) !important;
}
body[data-theme=dark] .blog-details article h1, body[data-theme=dark] .blog-details article h2, body[data-theme=dark] .blog-details article h3, body[data-theme=dark] .blog-details article h4, body[data-theme=dark] .blog-details article h5, body[data-theme=dark] .blog-details article h6, body[data-theme=dark] .blog-details article p, body[data-theme=dark] .blog-details article ul, body[data-theme=dark] .blog-details article li, body[data-theme=dark] .blog-details article b, body[data-theme=dark] .blog-details article blockquote {
  color: #afb1bb !important;
}

[dir=rtl] .blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item .category-list li .category-list-link {
  padding-left: 20px;
  padding-right: 35px;
}
[dir=rtl] .blog-details .blog-category-container .offcanvas .offcanvas-body .blog-category-item .category-list li .category-list-link:after {
  left: auto;
  right: 20px;
}

/* ======= Faq Section Start ======*/
.faq-item .faq-heading h4 {
  border-bottom: 2px solid;
  border-color: rgba(255, 255, 255, 0.2);
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 20px;
}
.faq-item .accordion .accordion-item {
  border-radius: 0;
  background: transparent;
  border: 0;
}
.faq-item .accordion .accordion-item .accordion-button {
  border-radius: 0 !important;
  background: transparent;
  outline: 0;
  color: var(--text-color);
  padding: 18px 0px 18px 0px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border-color);
}
.faq-item .accordion .accordion-item .accordion-button:focus {
  outline: none;
  box-shadow: none !important;
}
.faq-item .accordion .accordion-item .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.faq-item .accordion .accordion-item .accordion-body {
  border: 0 !important;
  color: var(--text-color);
  padding: 15px 0px 15px 0px;
}
.faq-item .accordion .accordion-item .accordion-body p {
  font-size: 16px;
}
.faq-item .accordion .accordion-item .accordion-body font {
  color: var(--text-color) !important;
}

.faq-item-left {
  padding: 15px 50px 10px 10px;
}

.faq-item-right {
  padding: 15px 10px 10px 50px;
}

.faq-two-left {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.accordion-item.custom-accordion {
  margin-bottom: 16px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
}

.accordion-item.custom-accordion .accordion-header {
  margin-bottom: 0;
}

.accordion-item.custom-accordion .accordion-button {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 24px;
  transition: background-color 0.3s, color 0.3s;
  background-color: var(--bg-white);
  outline: none;
  box-shadow: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-item.custom-accordion .accordion-button::after {
  display: none;
}

.accordion-item.custom-accordion .accordion-button .icon::before {
  content: "+";
  font-size: 1.8rem;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.accordion-item.custom-accordion .accordion-button:not(.collapsed) {
  padding-bottom: 24px;
}

.accordion-item.custom-accordion .accordion-button:not(.collapsed) .icon::before {
  content: "×";
  font-size: 1.8rem;
  font-weight: 400;
  transform: rotate(180deg);
}

.accordion-item.custom-accordion .accordion-body {
  padding: 0 24px 16px 24px;
  background-color: transparent;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 20px;
}

.accordion-item.custom-accordion:last-child {
  margin-bottom: 0;
}

/* ======= Faq Section Ends ======*/
/* ======= footer-section Start ======== */
.footer-one {
  background: #0a0e13;
  --text-color: var(--text-white);
  color: var(--text-color);
}
.footer-one .footer-logo-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-one .footer-logo-info .logo img {
  height: 40px;
}
.footer-one .footer-logo-info p {
  font-size: 16px;
}
.footer-one p {
  --text-color: var(--text-white);
  color: var(--text-color);
}
.footer-one hr {
  opacity: 0.2;
  border-color: #fff;
}
.footer-one h6 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
  word-spacing: 1px;
}
.footer-one span {
  font-size: 16px;
}
.footer-one ul {
  padding: 0;
  margin: 0;
}
.footer-one ul li {
  list-style: none;
  margin-bottom: 15px;
}
.footer-one ul li:last-child {
  margin-bottom: 0;
}
.footer-one ul li a {
  text-decoration: none;
  --text-color: var(--text-white);
  color: var(--text-color);
  transition: all 0.4s ease;
  font-weight: 600;
}
.footer-one ul li a:hover {
  --text-color: rgba(var(--primary-color));
  color: var(--text-color);
  transition: all 0.4s ease;
}
.footer-one .address div {
  line-height: 1.5;
}
.footer-one .address div i {
  font-size: 18px;
}
.footer-one .trade-licence-thumb {
  width: 100%;
  height: 131.09px;
}
.footer-one .trade-licence-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer-one .hr-line {
  margin: 2rem 0;
}
.footer-one .fb-page-container {
  background: var(--bg-color);
}
.footer-one .fb-page-container .page-logo img {
  height: 45px;
}
.footer-one .fb-page-container .page-inner a {
  font-size: 18px;
  font-weight: 400;
  --text-color: var(--text-primary);
  color: var(--text-color);
  display: inline-block;
}
.footer-one .fb-page-container .page-inner a:hover {
  text-decoration: underline;
  --text-color: rgba(var(--primary-color));
  color: var(--text-color);
}
.footer-one .fb-page-container .page-inner div a {
  background: #ddd;
  border: 1px solid #ddd;
  padding: 3px 5px;
  font-size: 12px;
  --text-color: var(--text-white);
  color: var(--text-color);
  font-weight: 500;
}
.footer-one .fb-page-container .page-inner div a:hover {
  background: #ccc;
}
.footer-one .fb-page-container .page-inner div p {
  font-size: 12px;
}
.footer-one .copy-right a {
  text-decoration: none;
  --text-color: var(--text-white);
  color: var(--text-color);
}

/* ========= Footer two start ==========*/
.footer-two {
  background-color: var(--bg-color);
  font-size: 15px;
  color: var(--text-color);
}

.footer-logo {
  max-height: 80px;
}

.newsletter-form input {
  height: 50px;
}

.newsletter-form .btn-1 {
  height: 40px;
  margin-right: 5px;
  padding: 6px 8px;
  --border-radius: 10px;
  font-size: 14px;
  line-height: 14px;
}

.footer-links li {
  margin-bottom: 20px;
  line-height: 16px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-links a:hover {
  --text-color: rgba(var(--primary-color));
  color: var(--text-color);
}

.social-icons a {
  color: var(--text-secondary);
  font-size: 16px;
}

.social-icons a:hover {
  --text-color: rgba(var(--primary-color));
  color: var(--text-color);
}

.footer-two .copyright {
  padding: 16px 0;
}

@media (max-width: 768px) {
  .footer-two .copyright {
    padding-bottom: 90px;
  }
}
.floating-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.main-button {
  width: 55px;
  height: 55px;
  --bg-color: rgba(var(--primary-color));
  background-color: var(--bg-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  animation: icon-animation 3s ease-in-out infinite;
}

@keyframes icon-animation {
  0% {
    transform: scale(1) rotate3d(0, 0, 1, 0deg);
  }
  20% {
    transform: scale(1.1) rotate3d(0, 0, 1, 10deg);
  }
  23%, 35%, 47%, 59%, 71% {
    transform: scale(1.1) rotate3d(0, 0, 1, 15deg);
  }
  26%, 38%, 50%, 62%, 74% {
    transform: scale(1.1) rotate3d(0, 0, 1, 0deg);
  }
  29%, 41%, 53%, 65%, 77% {
    transform: scale(1.1) rotate3d(0, 0, 1, -15deg);
  }
  80% {
    transform: scale(1.1) rotate3d(0, 0, 1, 0deg);
  }
  100% {
    transform: scale(1) rotate3d(0, 0, 1, 0deg);
  }
}
.main-button i {
  font-size: 24px;
  --text-color: var(--text-white);
  color: var(--text-color);
}

.expanded-buttons {
  position: absolute;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.expanded-buttons.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.expanded-buttons a {
  width: 55px;
  height: 55px;
  background-color: var(--bg-color);
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  transition: transform 0.3s;
}

.expanded-buttons a i {
  font-size: 26px;
  --text-color: var(--text-white);
  color: var(--text-color);
}

/* Tooltip Styles */
.expanded-buttons a::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background-color: #6b47dc;
  --text-color: var(--text-white);
  color: var(--text-color);
  padding: 8px 12px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.expanded-buttons a:hover::after {
  opacity: 1;
}

/* Tooltip Arrow */
.expanded-buttons a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% - 2px);
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #6b47dc;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.expanded-buttons a:hover::before {
  opacity: 1;
}

.modal.popup-video .modal-dialog {
  max-width: 700px;
}
.modal.popup-video .modal-dialog .modal-content {
  padding: 0;
  border: 0;
  border: 3px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}
.modal.popup-video .modal-dialog .modal-content .modal-body {
  padding: 0;
}
.modal.popup-video .modal-dialog .modal-content .videos {
  width: 100%;
  height: 400px;
}
.modal.popup-video .modal-dialog .modal-content .videos .main-video {
  width: 100%;
  height: 100%;
}

.scroll-button {
  position: fixed;
  display: block;
  bottom: 70px;
  right: 15px;
  transform: translateY(20px);
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
  width: 45px;
  height: 45px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: 0.4s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}
.scroll-button:hover, .scroll-button:focus {
  color: var(--text-white);
  background-color: #0a0e13;
}

.scroll-button.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition: 0.4s ease;
}

.btn-1 {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-1:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-1:focus {
  color: var(--text-white);
}

.btn-1.danger {
  --bg-color: rgb(197, 61, 43);
  --primary-color: rgb(197, 61, 43);
  border-color: rgba(var(--primary-color));
}

.btn-two {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-two:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-two:focus {
  color: var(--text-white);
}

.btn-two {
  background: #ffffff;
  padding: 8px 18px;
  border-color: #ffffff;
  color: #212121;
}

.btn-two:hover {
  background: #ececec;
  border-color: #ececec;
  color: #212121;
}

.theme-3-btn {
  display: inline-flex;
  height: 54px;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: rgba(var(--primary-color));
  border-radius: var(--border-radius);
  color: var(--text-white);
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  line-height: 16px;
  font-weight: 400;
}

.theme-3-btn:hover {
  background-color: transparent;
  border-color: rgba(var(--primary-color));
  color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn {
  background-color: transparent;
  color: var(--text-color);
  border-color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
}

.theme-3-btn.no-hover-effect:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
  border: 1px solid transparent;
}

.btn-lg {
  height: 44px;
  padding: 12px 24px;
}

/* ======== Shop Grid style start ========*/
.shop-grid-banner {
  position: relative;
}

.shop-grid-banner-container {
  --bg-color: #E9EEFB;
  background-color: var(--bg-color);
  width: 100%;
  padding: 30px 0;
  position: relative;
}
.shop-grid-banner-container .banner-thumb {
  max-width: 300px;
}

.shop-grid-banner-item h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
}
.shop-grid-banner-item h2 i {
  font-size: 18px;
}
.shop-grid-banner-item .banner-list li span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
}
.shop-grid-banner-item .banner-list li h4 {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  padding-bottom: 2px;
  cursor: pointer;
}
.shop-grid-banner-item .banner-list li h4:after {
  content: "";
  border-bottom: 2px solid;
  border-color: var(--bg-color);
  position: absolute;
  bottom: 0;
  width: 0;
  transition: 0.4s;
  right: 0;
}
.shop-grid-banner-item .banner-list li h4:hover:after {
  width: 100% !important;
  transition: 0.4s;
  left: 0;
}
.shop-grid-banner-item .banner-list-2 li span {
  font-size: 20px;
}
.shop-grid-banner-item .banner-list-2 li h4 {
  font-size: 24px;
}
.shop-grid-banner-item .banner-list-2 li h4 a {
  color: var(--text-color);
}
.shop-grid-banner-item .breadcrumb {
  margin-bottom: 0;
  margin-left: 0;
}
.shop-grid-banner-item .breadcrumb .breadcrumb-item {
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.shop-grid-banner-item .breadcrumb .breadcrumb-item a {
  color: var(--text-color);
}
.shop-grid-banner-item .breadcrumb .breadcrumb-item.active {
  font-weight: 600;
  opacity: 1;
  color: rgb(255, 186, 35);
}
.shop-grid-banner-item .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  color: var(--text-color);
  content: "\f054";
  font-family: "fontAwesome";
  font-size: 13px !important;
  font-weight: 400;
  float: none;
}
.shop-grid-banner-item .breadcrumb .breadcrumb-item {
  color: var(--text-color);
}
.shop-grid-banner-item .breadcrumb .breadcrumb-item a {
  color: var(--text-color);
}
.shop-grid-banner-item .breadcrumb .breadcrumb-item:before {
  color: var(--text-color);
}

body[data-theme=dark] .shop-grid-banner-container {
  --bg-color: #aec4fc3b;
}

/* ======== Shop Grid style Ends ========*/
/* ====== Shop Gallery Filter Start ======== */
.shop-gallery-filter {
  position: relative;
  width: 100%;
  display: block;
}
.shop-gallery-filter .offcanvas.filter-offcanvas {
  --bg-color: var(--white-2);
  background: var(--bg-color);
  color: var(--text-color);
}
.shop-gallery-filter .offcanvas.filter-offcanvas .btn-close {
  opacity: 1 !important;
}
.shop-gallery-filter .offcanvas.filter-offcanvas .btn-close:focus {
  box-shadow: none;
}

.widget-area-start {
  color: var(--text-color);
  padding: 20px 14px;
  height: auto;
}
.widget-area-start .product-category-item {
  border-bottom: 1px solid;
  border-color: var(--border-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.widget-area-start .product-category-item .category-title {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}
.widget-area-start .product-category-item .product-categories li {
  margin-bottom: 10px;
}
.widget-area-start .product-category-item .product-categories li:last-child {
  margin-bottom: 0;
}
.widget-area-start .product-category-item .product-categories li a {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 600;
  transition: 0.4s;
}
.widget-area-start .product-category-item .product-categories li a:focus {
  color: var(--text-color);
}
.widget-area-start .product-category-item .product-categories li a:hover {
  --text-color: rgba(var(--primary-color));
  color: var(--text-color);
  transition: 0.4s;
}
.widget-area-start .product-category-item .product-categories li.category-accordion .accordion-item {
  background: transparent;
  border: 0;
}
.widget-area-start .product-category-item .product-categories li.category-accordion .accordion-item.active, .widget-area-start .product-category-item .product-categories li.category-accordion .accordion-item:hover {
  --text-color: var(--text-white);
}
.widget-area-start .product-category-item .product-categories li.category-accordion .accordion-item.active .accordion-header, .widget-area-start .product-category-item .product-categories li.category-accordion .accordion-item:hover .accordion-header {
  background-color: rgba(var(--primary-color));
  --text-color: var(--text-white);
}
.widget-area-start .product-category-item .product-categories li.category-accordion .accordion-item.active .accordion-header a:hover, .widget-area-start .product-category-item .product-categories li.category-accordion .accordion-item:hover .accordion-header a:hover {
  --text-color: var(--text-white);
}
.widget-area-start .product-category-item .product-categories li.category-accordion .accordion-item.active .accordion-body, .widget-area-start .product-category-item .product-categories li.category-accordion .accordion-item:hover .accordion-body {
  --text-color: var(--text-primary);
}
.widget-area-start .product-category-item .product-categories li.category-accordion .accordion-item .accordion-header {
  box-shadow: var(--box-shadow);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  --bg-color: var(--bg-white);
  background-color: var(--bg-color);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  transition: all 0.4s ease;
  z-index: 1;
}
.widget-area-start .product-category-item .product-categories li.category-accordion .accordion-item .accordion-button {
  background: transparent;
  color: var(--text-color);
  box-shadow: none;
  padding: 0;
  font-weight: 500;
  line-height: 20px;
  width: auto;
}
.widget-area-start .product-category-item .product-categories li.category-accordion .accordion-item .accordion-button:after {
  background-image: none;
  content: "+";
  font-family: "fontawesome";
  font-size: 12px;
  font-weight: 600;
  transform: rotate(0);
  width: auto;
}
.widget-area-start .product-category-item .product-categories li.category-accordion .accordion-item .accordion-body {
  --bg-color: var(--bg-white);
  background-color: var(--bg-color);
  color: var(--text-color);
  position: relative;
  overflow: hidden;
}
.widget-area-start .product-category-item .product-categories li.category-accordion .accordion-item .accordion-body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: var(--border-color-1);
}
.widget-area-start .product-category-item .product-categories li.category-accordion .accordion-item .accordion-body a:not(:last-child) {
  display: block;
  margin-bottom: 15px;
}
.widget-area-start .product-category-item .product-categories li.category-accordion .accordion-button:not(.collapsed):after {
  content: "\f068";
}
.widget-area-start .product-category-item .product-filter-slider .irs--sharp {
  margin-top: -20px;
}
.widget-area-start .product-category-item .product-filter-slider .irs--sharp .irs-single {
  display: none;
}
.widget-area-start .product-category-item .product-filter-slider .irs--sharp .irs-line {
  height: 3px;
  background-color: #ddd;
  border-radius: 2px;
}
.widget-area-start .product-category-item .product-filter-slider .irs--sharp .irs-from,
.widget-area-start .product-category-item .product-filter-slider .irs--sharp .irs-to {
  display: none;
}
.widget-area-start .product-category-item .product-filter-slider .irs--sharp .irs-min,
.widget-area-start .product-category-item .product-filter-slider .irs--sharp .irs-max {
  display: none;
}
.widget-area-start .product-category-item .product-filter-slider .irs--sharp .irs-bar {
  --bg-color: rgba(var(--primary-color));
  background-color: var(--bg-color);
  height: 3px;
}
.widget-area-start .product-category-item .product-filter-slider .irs--sharp .irs-handle {
  --bg-color: rgba(var(--primary-color));
  background-color: var(--bg-color);
}
.widget-area-start .product-category-item .product-filter-slider .irs--sharp .irs-handle > i:first-child {
  border-top-color: var(--bg-color);
}
.widget-area-start .product-category-item .product-filter-slider .price-content #price-output {
  color: var(--text-color);
}
.widget-area-start .product-category-item .product-filter-slider .price-content #price-output strong {
  font-weight: 600;
}
.widget-area-start .product-category-item .product-filter-slider .price-content button {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  padding: 8px 10px;
}
.widget-area-start .product-category-item .product-list li {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.widget-area-start .product-category-item .product-list li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.widget-area-start .product-category-item .product-list li .product-thumb {
  width: 65px;
  height: 65px;
  flex-shrink: 0;
}
.widget-area-start .product-category-item .product-list li .product-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.widget-area-start .product-category-item .product-list li .prodcut-info .prodcut-info-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-color);
}
.widget-area-start .product-category-item .product-list li .prodcut-info .prodcut-info-title a {
  color: var(--text-color);
  transition: 0.3s;
}
.widget-area-start .product-category-item .product-list li .prodcut-info .prodcut-info-title a:hover {
  opacity: 0.8;
  transition: 0.3s;
}
.widget-area-start .product-category-item .product-list li .prodcut-info span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
}

.shop-content-area .shop-content-topbar {
  color: var(--text-color);
}
.shop-content-area .shop-content-topbar .shop-content-tools {
  line-height: 1;
}
.shop-content-area .shop-content-topbar .shop-content-tools .filter-sidebar-btn button.btn-primary {
  background: var(--bg-color);
  border-color: var(--bg-color);
  color: var(--text-color);
}
.shop-content-area .shop-content-topbar .shop-content-tools .breadcrumb {
  margin-bottom: 0;
  margin-left: 0;
}
.shop-content-area .shop-content-topbar .shop-content-tools .breadcrumb .breadcrumb-item {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
}
.shop-content-area .shop-content-topbar .shop-content-tools .breadcrumb .breadcrumb-item a {
  color: var(--text-color);
}
.shop-content-area .shop-content-topbar .shop-content-tools .breadcrumb .breadcrumb-item:before {
  color: var(--text-color);
}
.shop-content-area .shop-content-topbar .shop-content-tools .breadcrumb .breadcrumb-item.active {
  font-weight: 600;
  opacity: 1;
}
.shop-content-area .shop-content-topbar .shop-content-tools .product-per-page .breadcrumb .breadcrumb-2:before {
  display: none !important;
}
.shop-content-area .shop-content-topbar .shop-content-tools .product-view-grid {
  line-height: 1;
}
.shop-content-area .shop-content-topbar .shop-content-tools .product-view-grid button {
  background: none;
  color: var(--text-color);
  width: 35px;
  height: 35px;
  border: 1px solid rgba(var(--primary-color));
  font-size: 16px;
  line-height: 35px;
  text-align: center;
  border-radius: 5px;
  transition: all 0.4s ease;
}
.shop-content-area .shop-content-topbar .shop-content-tools .product-view-grid button:hover, .shop-content-area .shop-content-topbar .shop-content-tools .product-view-grid button.active {
  --text-color: var(--text-white);
  background-color: rgba(var(--primary-color));
  transition: all 0.4s ease;
}
.shop-content-area .shop-content-topbar .shop-content-tools .product-view-grid button i {
  vertical-align: -1px;
}
.shop-content-area .shop-content-topbar .shop-content-tools .product-view-grid .layout {
  background: blue;
  padding: 20px;
}
.shop-content-area .shop-content-topbar .shop-content-tools .product-sort select {
  background: transparent;
  color: #fff;
  border: 2px solid;
  border-width: 0 0 2px 0;
  border-color: rgba(255, 255, 255, 0.2);
  padding-bottom: 2px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: 0.4s;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  background-image: url("../../img/shop-grid/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  color: #fff;
}
.shop-content-area .shop-content-topbar .shop-content-tools .product-sort select option {
  background: #000;
}
.shop-content-area .shop-content-topbar .shop-content-tools .product-sort select:focus {
  border-color: var(--text-color);
  box-shadow: none;
  outline: none;
  transition: 0.4s;
}
.shop-content-area .shop-content-topbar .shop-content-tools .product-sort select:after {
  content: "\f078";
  font-family: "fontAwesome";
  font-size: 12px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.pagination, .pagination-2 {
  width: 100%;
}
.pagination .page-item .page-link, .pagination-2 .page-item .page-link {
  color: var(--text-color);
  background: transparent;
  padding: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid var(--border-color);
}
.pagination .page-item .page-link i, .pagination-2 .page-item .page-link i {
  color: var(--text-color);
}
.pagination .page-item .page-link:hover, .pagination-2 .page-item .page-link:hover {
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  --text-color: var(--text-white);
  color: var(--text-color);
  --border-color: rgba(var(--primary-color));
  border-color: var(--border-color);
}
.pagination .page-item .page-link:hover i, .pagination-2 .page-item .page-link:hover i {
  color: var(--text-white);
}
.pagination .page-item .page-link:focus, .pagination-2 .page-item .page-link:focus {
  box-shadow: none;
}
.pagination .page-item .page-link.active-pagination, .pagination-2 .page-item .page-link.active-pagination {
  color: var(--text-white);
  --bg-color: rgba(var(--primary-color));
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
}

.pagination-2 .page-item .page-link {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  border: 0;
}
.pagination-2 .page-item .page-link.active-pagination {
  background-color: rgba(var(--primary-color));
  border: 0;
  color: var(--text-white);
}

/* ====== Shop Gallery Filter Ends ======== */
[dir=rtl] .pagination .page-item .page-link i,
[dir=rtl] .pagination-2 .page-item .page-link svg {
  transform: rotate(180deg);
}

.title-1 {
  position: relative;
  letter-spacing: 3px;
  padding-left: 20px;
  font-weight: 700;
  line-height: 1 !important;
}
.title-1:after {
  content: "";
  width: 3px;
  height: 13px;
  background-color: rgb(255, 186, 35);
  position: absolute;
  left: 0;
}
.title-1:before {
  content: "";
  width: 3px;
  height: 13px;
  background-color: var(--text-color);
  position: absolute;
  left: 6px;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}
.about-container .s1 {
  font-size: 13px;
}
.about-container .p2 {
  font: 400 13px "Kohinoor Bangla";
}
.about-container p {
  font-size: 16px;
}
.about-container h4 {
  font-size: 18px;
}
.about-container .about-img-content .about-img-heading {
  font-size: 45px;
}
.about-container .ab-content-one {
  font-size: 26px;
  font-style: italic;
  color: #8E8E8E;
  font-weight: 500;
}
.about-container .ab-content-two span {
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  float: left;
  margin-right: 10px;
}

/* ======= about-countdown ======= */
.about-countdown {
  background-color: #111822;
  color: var(--text-white);
}

.countdown-item .countdown-item-box {
  border-bottom: 1px solid;
  border-color: var(--border-color);
}
.countdown-item .countdown-item-inner {
  padding: 30px 0;
  border-color: var(--border-color);
  border: 1px solid #3b424d;
}
.countdown-item .countdown-item-inner h3 {
  font-size: 44px;
  font-weight: 600;
}
.countdown-item .countdown-item-inner h4 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 10px;
  line-height: 1;
}

.count-item-right h3 {
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 10px;
}
.count-item-right p {
  font-size: 20px;
  font-weight: 500;
  color: #8E8E8E;
}

/* ========= We Work section Start ======= */
.we-work .main-heading-2 h4 {
  font-size: 38px;
}
.we-work .work-container {
  border-color: var(--border-color);
  padding: 24px;
  border: 1px solid var(--border-color);
}
.we-work .work-container .work-number h2 {
  font-size: 50px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1;
}
.we-work .work-container .work-content {
  position: relative;
}
.we-work .work-container .work-content h4 {
  font-size: 18px;
}
.we-work .work-container .work-content p {
  font-size: 16px;
}
.we-work .work-container .work-content button {
  background: none;
  border: 0;
  display: block;
  border-color: var(--text-color);
  color: var(--text-color);
  transition: 0.5s;
}

.number-item h4 {
  color: var(--text-secondary);
}

.ab-thumb {
  width: 80px;
  height: 80px;
}

.support-area-item {
  padding: 40px;
  background: rgb(217, 243, 251);
}
.support-area-item .lg\:text-3xl {
  font-size: 26px !important;
}
.support-area-item.two {
  background-color: #F9FFE0;
}
.support-area-item.three {
  background-color: #FFE2E5;
}

body[data-theme=dark] .support-area-item {
  background: rgba(59, 176, 211, 0.233);
}
body[data-theme=dark] .support-area-item.two {
  background-color: rgba(196, 224, 80, 0.2274509804);
}
body[data-theme=dark] .support-area-item.three {
  background-color: rgba(214, 68, 83, 0.2588235294);
}

/* ========== Benefit section Start ========== */
.benefit-item {
  position: relative;
}
.benefit-item::after {
  content: "";
  background-color: var(--border-color);
  width: 1px;
  height: 60px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  right: 0;
}

.benefit-section .col-lg-3:last-child .benefit-item::after {
  display: none;
}

@media (max-width: 991px) {
  .benefit-item::after {
    display: none;
  }
}
.car-icon {
  display: flex;
  width: 50px;
  height: 50px;
  padding: 0 5px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--bg-gray);
}

/* ======== Varriable Root css Color And Fonts Start =========*/
:root {
  --border-radius: 10px;
  --box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.08);
  --dynamic-pt: 0;
  --dynamic-pb: 80px;
  --bg-image: none;
  --bg-white: #fff;
  --white-2: #f7f7f7;
  --white-3: #ffffff;
  --bg-secondary: #f7f7f7;
  --bg-color: var(--bg-white);
  --primary-color: 29, 153, 147;
  --secondary-color: #066e69;
  --text-primary: #1e2533;
  --text-secondary: #6f678b;
  --clr-body: #334155;
  --text-white: #fff;
  --border-color: #d6e2ef;
  --border-color-1: #bdc7d2;
  --text-color: var(--text-primary);
  --filter-color: brightness(0);
  --primary-font: "DM Sans", sans-serif;
  --secondary-font: "Poppins", serif;
  --bs-dark-text-emphasis: #495057;
  --bg-gray: oklch(96.7% 0.003 264.542);
  --bs-modal-bg: #ffffff;
  --bg-gradient: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

[data-theme=dark] {
  --bg-white: #24282e;
  --white-2: #33373e;
  --white-3: #33373e;
  --bg-secondary: #465258;
  --bg-color: var(--bg-white);
  --primary-color: 29, 153, 147;
  --text-primary: #dfe1e4;
  --clr-body: #abb6c5;
  --text-secondary: #cbcace;
  --text-white: #fff;
  --border-color: #d6e2ef33;
  --border-color-1: #d6e2ef33;
  --text-color: var(--text-primary);
  --box-shadow: 0px 0px 15px rgba(238, 234, 234, 0.1);
  --bs-box-shadow: 0px 0px 15px rgba(238, 234, 234, 0.1);
  --filter-color: invert(1);
  --bs-danger-text-emphasis: #cbcace;
  --bs-border-color: #525961;
  --bg-gray: #1a2631;
  --bs-modal-bg: #33373e;
  --bg-gradient: linear-gradient(180deg, #0d1117 0%, #101922 100%);
}

/* ======== Varriable Root css Color And Fonts Start =========*/
/*======= Default Css Start ======*/
* {
  margin: 0;
  padding: 0;
}

section {
  background-color: var(--bg-color, transparent);
  background-image: var(--bg-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}

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

img {
  position: relative;
  vertical-align: middle;
}

@media (min-width: 991px) {
  .ms-6 {
    margin-left: 70px;
  }
  [dir=rtl] .ms-6 {
    margin-left: 0;
    margin-right: 80px !important;
  }
}
/* single-line (line-clamp-1) */
.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

/* two-line (line-clamp-2) */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hover-zoom {
  transition: 0.3s;
}
.hover-zoom img {
  transition: transform 0.4s ease;
}
.hover-zoom:hover img {
  transform: scale(1.1);
}

.rotate-0 {
  transform: rotate(0) !important;
}

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

.soft-yellow {
  background-color: rgb(255, 242, 198) !important;
}

.soft-green {
  background-color: rgb(198, 255, 217) !important;
}

.soft-blue {
  background-color: rgb(224, 245, 255) !important;
}

body[data-theme=dark] .soft-yellow {
  background-color: rgba(250, 228, 155, 0.226) !important;
}

body[data-theme=dark] .soft-green {
  background-color: rgba(149, 253, 184, 0.24) !important;
}

body[data-theme=dark] .soft-blue {
  background-color: rgba(150, 219, 252, 0.226) !important;
}

.hover-primary {
  transition: 0.3s;
}
.hover-primary:hover {
  color: rgba(var(--primary-color)) !important;
  transition: 0.3s;
}

.hover-white {
  transition: 0.3s;
}
.hover-white:hover {
  background-color: var(--bg-white) !important;
  color: var(--text-primary) !important;
  transition: 0.3s;
}

.c {
  color: rgba(11, 239, 97, 0.1607843137);
}

.font-semibold {
  font-weight: 600;
}

.c-pointer {
  cursor: pointer;
}

.form-check {
  min-height: unset;
}

.rounded {
  border-radius: var(--border-radius) !important;
}

.ps-left {
  position: absolute;
  left: 15px;
  z-index: 1;
}

.ps-right {
  position: absolute;
  right: 15px;
  z-index: 1;
}

.start-auto {
  left: auto !important;
}

.end-auto {
  right: auto !important;
}

.ps-right-2 {
  position: absolute;
  right: 5px;
  z-index: 1;
}

.fa-magnifying-glass {
  color: var(--text-color);
}

.swiper-margin {
  margin-left: -16px;
  margin-right: -16px;
  margin-bottom: -16px;
}

.border-primary {
  border: 1px solid rgba(var(--primary-color)) !important;
}

.form-control {
  height: 54px;
  border-color: var(--border-color);
  padding: 11px 1rem;
  background: var(--bg-color) !important;
  box-shadow: none;
  border-radius: var(--border-radius);
  color: var(--text-color) !important;
  transition: all 0.2s ease-in-out;
  font-size: 16px !important;
  font-weight: 500;
}
.form-control:focus {
  border-color: rgba(var(--primary-color)) !important;
  background: var(--bg-white) !important;
  color: var(--text-color) !important;
  transition: all 0.2s ease-in;
}
.form-control::-moz-placeholder {
  color: #929394;
}
.form-control::placeholder {
  color: #929394;
}

.form-select {
  height: 54px;
  border-color: var(--border-color);
  padding: 11px 1rem;
  background-color: transparent !important;
  box-shadow: none;
  border-radius: var(--border-radius);
  color: var(--text-color);
  transition: all 0.2s ease-in-out;
  font-size: 16px !important;
  font-weight: 500;
  box-shadow: none;
  cursor: pointer;
}
.form-select:focus {
  border-color: rgba(var(--primary-color)) !important;
  color: var(--text-color) !important;
  transition: all 0.2s ease-in;
  box-shadow: none;
}
.form-select::-moz-placeholder {
  color: #929394;
}
.form-select::placeholder {
  color: #929394;
}

.form-check-input:checked {
  background-color: rgba(var(--primary-color));
  border-color: rgba(var(--primary-color));
  box-shadow: none;
}

.form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0;
}

.fs-xs {
  font-size: 5px;
}

.select-one {
  height: 40px;
}

.h-30px {
  height: 30px;
}

.border {
  border: 1px solid var(--border-color) !important;
}

.shadow-xs {
  box-shadow: 0px 6px 32px rgba(0, 0, 0, 0.04);
}

.shadow-sm {
  box-shadow: var(--box-shadow) !important;
}

html,
body {
  font-size: 15px;
  line-height: 1.4;
  background-color: var(--bg-color);
  padding-right: 0 !important;
  color: var(--text-color);
  font-family: var(--primary-font);
  font-weight: 500;
  scroll-behavior: smooth;
  box-sizing: border-box;
  position: relative;
  overflow-x: hidden;
}

.heading2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-color);
}

.heading4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
}

.heading3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
}

@media (min-width: 1200px) {
  .border-end-lg {
    border-right: 1px solid var(--border-color);
  }
  .border-start-lg {
    border-left: 1px solid var(--border-color);
  }
  .border-top-lg {
    border-top: 1px solid var(--border-color);
  }
  .border-bottom-lg {
    border-bottom: 1px solid var(--border-color);
  }
}
/* ===== Heading style ======*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

h1 {
  font-size: 45px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

.c-pointer {
  cursor: pointer;
}

.w-75 {
  max-width: 1100px;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 30px !important;
  }
  h2 {
    font-size: 26px !important;
  }
  h3 {
    font-size: 30px !important;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 28px !important;
  }
  h2 {
    font-size: 24px !important;
  }
  h3 {
    font-size: 24px !important;
  }
  .sub-heading .badge {
    font-size: 0.875rem !important;
    padding: 0.3rem 0.75rem !important;
  }
  .section-padding {
    padding: 60px 0 !important;
  }
  .pt-80 {
    padding-top: 40px !important;
  }
  .pb-50 {
    padding-bottom: 30px !important;
  }
  .section-padding-bottom {
    padding-bottom: 60px !important;
  }
  .section-padding-top {
    padding-top: 60px !important;
  }
  .section-margin {
    margin: 60px 0 !important;
  }
  .section-margin-top {
    margin-top: 60px !important;
  }
  .section-margin-bottom {
    margin-bottom: 60px !important;
  }
}
@media screen and (max-width: 576px) {
  .section-padding {
    padding: 40px 0 !important;
  }
  .section-padding-bottom {
    padding-bottom: 40px !important;
  }
  .section-padding-top {
    padding-top: 40px !important;
  }
  .section-margin {
    margin: 40px 0 !important;
  }
  .section-margin-top {
    margin-top: 40px !important;
  }
  .section-margin-bottom {
    margin-bottom: 40px !important;
  }
}
p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

body.modal-open {
  padding-right: 0 !important;
}

/* ===== Heading style ends======*/
.text-primary {
  --text-color: rgba(var(--primary-color));
  color: var(--text-color) !important;
}

.text-secondary {
  color: var(--text-secondary) !important;
}

.text-black {
  color: var(--text-color) !important;
}

.text-gray {
  color: var(--text-color);
}

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

.bg-white {
  background-color: var(--bg-color) !important;
}

.form-control:focus {
  box-shadow: none;
  border-color: inherit;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
}

ul {
  margin: 0;
  padding: 0;
}

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

ol {
  padding-left: 0;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  color: rgba(var(--primary-color));
}

a:focus {
  outline: none;
}

.border-top {
  border-top: 1px solid var(--border-color) !important;
}

.border-end {
  border-right: 1px solid !important;
  border-color: var(--border-color) !important;
}

.border-end-1 {
  border-right: 1px solid !important;
  border-color: var(--border-color-1) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--border-color) !important;
}

.border-dashed {
  border: 1px dashed var(--border-color);
}

/* ======= Section Padding Start ========= */
.mt-10 {
  margin-top: 10px;
}

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

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

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

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

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

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

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

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

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

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

.mb-24 {
  margin-bottom: 24px !important;
}

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

.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;
}

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

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

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

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

.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;
}

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

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

.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: 70px;
}

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

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

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

.pl-70 {
  padding-left: 70px;
}

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

@media (max-width: 991px) {
  .mb-50 {
    margin-bottom: 40px;
  }
  .mb-80 {
    margin-bottom: 60px;
  }
  .pt-50 {
    padding-top: 40px;
  }
  .pt-80 {
    padding-top: 60px;
  }
  .pb-50 {
    padding-bottom: 40px;
  }
  .pb-80 {
    padding-bottom: 60px;
  }
  .pb-120 {
    padding-bottom: 40px;
  }
  .pb-150 {
    padding-bottom: 80px;
  }
}
.section-padding {
  padding: 80px 0;
}

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

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

.section-margin {
  margin: 80px 0;
}

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

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

.badge-one {
  padding: 4px 9px;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  background: var(--bg-color-3);
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.badge {
  display: inline-block;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 400;
}
.badge.cus-badge1 {
  --bg-color: rgba(var(--primary-color), 0.1);
  background-color: var(--bg-color);
  --text-color: rgba(var(--primary-color));
  color: var(--text-color);
}
.badge.cus-badge2 {
  --bg-color: var(--bg-white) !important;
  background-color: var(--bg-color) !important;
}
.badge.text-bg-dark {
  background-color: #1f1f39 !important;
}
.badge.bg-danger {
  background-color: #fff4f4 !important;
  color: #e93c3c;
  transition: all 0.2s ease-in-out;
  border: 0;
}
.badge.bg-danger i {
  font-size: 15px;
}
.badge.bg-danger:hover {
  background-color: #dc3545 !important;
  color: var(--text-white);
  transition: all 0.2s ease-in-out;
}

/* Base grid utility */
.grid {
  display: grid;
  gap: 1rem;
}

/* Column utilities */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

/* Responsive breakpoints (like Tailwind) */
@media (min-width: 640px) {
  /* sm */
  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .sm\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .sm\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .sm\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  /* md */
  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .md\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  /* lg */
  .lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .lg\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  /* xl */
  .xl\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .xl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .xl\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .xl\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .xl\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .pt-40 {
    padding-top: 20px !important;
  }
  .pb-40 {
    padding-bottom: 20px !important;
  }
  .pt-80 {
    padding-top: 40px !important;
  }
  .pb-80 {
    padding-bottom: 40px !important;
  }
}
/* =============================
   Typography Utilities
   Responsive Version
   ============================= */
/* ---------- Font Weight ---------- */
.font-thin {
  font-weight: 100 !important;
}

.font-extralight {
  font-weight: 200 !important;
}

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

.font-normal {
  font-weight: 400 !important;
}

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

.font-semibold {
  font-weight: 600 !important;
}

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

.font-extrabold {
  font-weight: 800 !important;
}

.font-black {
  font-weight: 900 !important;
}

/* ---------- Font Size ---------- */
.text-xs {
  font-size: 0.75rem !important;
  line-height: 1rem !important;
}

/* 12px / 16px */
.text-sm {
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
}

/* 14px / 20px */
.text-base {
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}

/* 16px / 24px */
.text-lg {
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
}

/* 18px / 28px */
.text-xl {
  font-size: 1.25rem !important;
  line-height: 1.75rem !important;
}

/* 20px / 28px */
.text-2xl {
  font-size: 1.5rem !important;
  line-height: 2rem !important;
}

/* 24px / 32px */
.text-3xl {
  font-size: 1.875rem !important;
  line-height: 2.25rem !important;
}

/* 30px / 36px */
.text-4xl {
  font-size: 2.25rem !important;
  line-height: 2.5rem !important;
}

/* 36px / 40px */
.text-5xl {
  font-size: 50px !important;
  line-height: 1 !important;
}

/* 48px */
.text-6xl {
  font-size: 3.75rem !important;
  line-height: 1 !important;
}

/* 60px */
.text-7xl {
  font-size: 4.5rem !important;
  line-height: 1 !important;
}

/* 72px */
.text-8xl {
  font-size: 6rem !important;
  line-height: 1 !important;
}

/* 96px */
.text-9xl {
  font-size: 8rem !important;
  line-height: 1 !important;
}

/* 128px */
/* ---------- Responsive Breakpoints ---------- */
/* sm ≥ 640px */
@media (min-width: 640px) {
  .sm\:text-xs {
    font-size: 0.75rem !important;
    line-height: 1rem !important;
  }
  .sm\:text-sm {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
  }
  .sm\:text-base {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
  .sm\:text-lg {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
  }
  .sm\:text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }
  .sm\:text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }
  .sm\:text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }
  .sm\:text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }
  .sm\:text-5xl {
    font-size: 50px !important;
    line-height: 1 !important;
  }
  .sm\:text-6xl {
    font-size: 3.75rem !important;
    line-height: 1 !important;
  }
  .sm\:text-7xl {
    font-size: 4.5rem !important;
    line-height: 1 !important;
  }
  .sm\:text-8xl {
    font-size: 6rem !important;
    line-height: 1 !important;
  }
  .sm\:text-9xl {
    font-size: 8rem !important;
    line-height: 1 !important;
  }
  .sm\:font-thin {
    font-weight: 100 !important;
  }
  .sm\:font-extralight {
    font-weight: 200 !important;
  }
  .sm\:font-light {
    font-weight: 300 !important;
  }
  .sm\:font-normal {
    font-weight: 400 !important;
  }
  .sm\:font-medium {
    font-weight: 500 !important;
  }
  .sm\:font-semibold {
    font-weight: 600 !important;
  }
  .sm\:font-bold {
    font-weight: 700 !important;
  }
  .sm\:font-extrabold {
    font-weight: 800 !important;
  }
  .sm\:font-black {
    font-weight: 900 !important;
  }
}
/* md ≥ 768px */
@media (min-width: 768px) {
  .md\:text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }
  .md\:text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }
  .md\:text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }
  .md\:text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }
  .md\:text-5xl {
    font-size: 3rem !important;
    line-height: 1 !important;
  }
  .md\:text-6xl {
    font-size: 3.75rem !important;
    line-height: 1 !important;
  }
  .md\:font-bold {
    font-weight: 700 !important;
  }
  .md\:font-light {
    font-weight: 300 !important;
  }
}
/* lg ≥ 1024px */
@media (min-width: 1024px) {
  .lg\:text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }
  .lg\:text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }
  .lg\:text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }
  .lg\:text-5xl {
    font-size: 3rem !important;
    line-height: 1 !important;
  }
  .lg\:text-6xl {
    font-size: 3.75rem !important;
    line-height: 1 !important;
  }
  .lg\:text-7xl {
    font-size: 4.5rem !important;
    line-height: 1 !important;
  }
  .lg\:font-semibold {
    font-weight: 600 !important;
  }
  .lg\:font-bold {
    font-weight: 700 !important;
  }
}
/* xl ≥ 1280px */
@media (min-width: 1280px) {
  .xl\:text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }
  .xl\:text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }
  .xl\:text-5xl {
    font-size: 3rem !important;
    line-height: 1 !important;
  }
  .xl\:text-6xl {
    font-size: 3.75rem !important;
    line-height: 1 !important;
  }
  .xl\:text-7xl {
    font-size: 4.5rem !important;
    line-height: 1 !important;
  }
  .xl\:text-8xl {
    font-size: 6rem !important;
    line-height: 1 !important;
  }
  .xl\:font-bold {
    font-weight: 700 !important;
  }
  .xl\:font-black {
    font-weight: 900 !important;
  }
}
/* 2xl ≥ 1536px */
@media (min-width: 1536px) {
  .\32 xl\:text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }
  .\32 xl\:text-5xl {
    font-size: 3rem !important;
    line-height: 1 !important;
  }
  .\32 xl\:text-6xl {
    font-size: 3.75rem !important;
    line-height: 1 !important;
  }
  .\32 xl\:text-7xl {
    font-size: 4.5rem !important;
    line-height: 1 !important;
  }
  .\32 xl\:text-8xl {
    font-size: 6rem !important;
    line-height: 1 !important;
  }
  .\32 xl\:text-9xl {
    font-size: 8rem !important;
    line-height: 1 !important;
  }
  .\32 xl\:font-bold {
    font-weight: 700 !important;
  }
  .\32 xl\:font-black {
    font-weight: 900 !important;
  }
}
.fs-32 {
  font-size: 32px !important;
}

.fs-38 {
  font-size: 38px !important;
}

.fs-42 {
  font-size: 42px !important;
}

/* Small (>=640px) */
@media (min-width: 640px) {
  .sm\:fs-32 {
    font-size: 32px !important;
  }
  .sm\:fs-38 {
    font-size: 38px !important;
  }
  .sm\:fs-42 {
    font-size: 42px !important;
  }
}
/* Medium (>=768px) */
@media (min-width: 768px) {
  .md\:fs-32 {
    font-size: 32px !important;
  }
  .md\:fs-38 {
    font-size: 38px !important;
  }
  .md\:fs-42 {
    font-size: 42px !important;
  }
}
/* Large (>=1024px) */
@media (min-width: 1024px) {
  .lg\:fs-32 {
    font-size: 32px !important;
  }
  .lg\:fs-38 {
    font-size: 38px !important;
  }
  .lg\:fs-42 {
    font-size: 42px !important;
  }
}
/* ---------- Base Line Height (mobile first) ---------- */
.lh-10 {
  line-height: 10px !important;
}

.lh-12 {
  line-height: 12px !important;
}

.lh-14 {
  line-height: 14px !important;
}

.lh-16 {
  line-height: 16px !important;
}

.lh-18 {
  line-height: 18px !important;
}

.lh-20 {
  line-height: 20px !important;
}

.lh-22 {
  line-height: 22px !important;
}

.lh-24 {
  line-height: 24px !important;
}

.lh-26 {
  line-height: 26px !important;
}

.lh-28 {
  line-height: 28px !important;
}

.lh-30 {
  line-height: 30px !important;
}

.lh-32 {
  line-height: 32px !important;
}

.lh-34 {
  line-height: 34px !important;
}

.lh-36 {
  line-height: 36px !important;
}

.lh-38 {
  line-height: 38px !important;
}

.lh-40 {
  line-height: 40px !important;
}

.lh-42 {
  line-height: 42px !important;
}

.lh-44 {
  line-height: 44px !important;
}

.lh-46 {
  line-height: 46px !important;
}

.lh-48 {
  line-height: 48px !important;
}

.lh-50 {
  line-height: 50px !important;
}

.lh-52 {
  line-height: 52px !important;
}

.lh-54 {
  line-height: 54px !important;
}

.lh-56 {
  line-height: 56px !important;
}

.lh-58 {
  line-height: 58px !important;
}

.lh-60 {
  line-height: 60px !important;
}

.lh-62 {
  line-height: 62px !important;
}

.lh-64 {
  line-height: 64px !important;
}

.lh-66 {
  line-height: 66px !important;
}

.lh-68 {
  line-height: 68px !important;
}

.lh-70 {
  line-height: 70px !important;
}

.lh-72 {
  line-height: 72px !important;
}

.lh-74 {
  line-height: 74px !important;
}

.lh-76 {
  line-height: 76px !important;
}

.lh-78 {
  line-height: 78px !important;
}

.lh-80 {
  line-height: 80px !important;
}

.lh-82 {
  line-height: 82px !important;
}

.lh-84 {
  line-height: 84px !important;
}

.lh-86 {
  line-height: 86px !important;
}

.lh-88 {
  line-height: 88px !important;
}

.lh-90 {
  line-height: 90px !important;
}

.lh-92 {
  line-height: 92px !important;
}

.lh-94 {
  line-height: 94px !important;
}

.lh-96 {
  line-height: 96px !important;
}

.lh-98 {
  line-height: 98px !important;
}

.lh-100 {
  line-height: 100px !important;
}

/* ---------- sm ≥ 640px ---------- */
@media (min-width: 640px) {
  .sm\:lh-10 {
    line-height: 10px !important;
  }
  .sm\:lh-12 {
    line-height: 12px !important;
  }
  .sm\:lh-14 {
    line-height: 14px !important;
  }
  .sm\:lh-16 {
    line-height: 16px !important;
  }
  .sm\:lh-18 {
    line-height: 18px !important;
  }
  .sm\:lh-20 {
    line-height: 20px !important;
  }
  .sm\:lh-22 {
    line-height: 22px !important;
  }
  .sm\:lh-24 {
    line-height: 24px !important;
  }
  .sm\:lh-26 {
    line-height: 26px !important;
  }
  .sm\:lh-28 {
    line-height: 28px !important;
  }
  .sm\:lh-30 {
    line-height: 30px !important;
  }
  .sm\:lh-32 {
    line-height: 32px !important;
  }
  .sm\:lh-34 {
    line-height: 34px !important;
  }
  .sm\:lh-36 {
    line-height: 36px !important;
  }
  .sm\:lh-38 {
    line-height: 38px !important;
  }
  .sm\:lh-40 {
    line-height: 40px !important;
  }
  .sm\:lh-42 {
    line-height: 42px !important;
  }
  .sm\:lh-44 {
    line-height: 44px !important;
  }
  .sm\:lh-46 {
    line-height: 46px !important;
  }
  .sm\:lh-48 {
    line-height: 48px !important;
  }
  .sm\:lh-50 {
    line-height: 50px !important;
  }
  .sm\:lh-52 {
    line-height: 52px !important;
  }
  .sm\:lh-54 {
    line-height: 54px !important;
  }
  .sm\:lh-56 {
    line-height: 56px !important;
  }
  .sm\:lh-58 {
    line-height: 58px !important;
  }
  .sm\:lh-60 {
    line-height: 60px !important;
  }
  .sm\:lh-62 {
    line-height: 62px !important;
  }
  .sm\:lh-64 {
    line-height: 64px !important;
  }
  .sm\:lh-66 {
    line-height: 66px !important;
  }
  .sm\:lh-68 {
    line-height: 68px !important;
  }
  .sm\:lh-70 {
    line-height: 70px !important;
  }
  .sm\:lh-72 {
    line-height: 72px !important;
  }
  .sm\:lh-74 {
    line-height: 74px !important;
  }
  .sm\:lh-76 {
    line-height: 76px !important;
  }
  .sm\:lh-78 {
    line-height: 78px !important;
  }
  .sm\:lh-80 {
    line-height: 80px !important;
  }
  .sm\:lh-82 {
    line-height: 82px !important;
  }
  .sm\:lh-84 {
    line-height: 84px !important;
  }
  .sm\:lh-86 {
    line-height: 86px !important;
  }
  .sm\:lh-88 {
    line-height: 88px !important;
  }
  .sm\:lh-90 {
    line-height: 90px !important;
  }
  .sm\:lh-92 {
    line-height: 92px !important;
  }
  .sm\:lh-94 {
    line-height: 94px !important;
  }
  .sm\:lh-96 {
    line-height: 96px !important;
  }
  .sm\:lh-98 {
    line-height: 98px !important;
  }
  .sm\:lh-100 {
    line-height: 100px !important;
  }
}
/* ---------- md ≥ 768px ---------- */
@media (min-width: 768px) {
  .md\:lh-10 {
    line-height: 10px !important;
  }
  .md\:lh-12 {
    line-height: 12px !important;
  }
  .md\:lh-14 {
    line-height: 14px !important;
  }
  .md\:lh-16 {
    line-height: 16px !important;
  }
  .md\:lh-18 {
    line-height: 18px !important;
  }
  .md\:lh-20 {
    line-height: 20px !important;
  }
  .md\:lh-22 {
    line-height: 22px !important;
  }
  .md\:lh-24 {
    line-height: 24px !important;
  }
  .md\:lh-26 {
    line-height: 26px !important;
  }
  .md\:lh-28 {
    line-height: 28px !important;
  }
  .md\:lh-30 {
    line-height: 30px !important;
  }
  .md\:lh-32 {
    line-height: 32px !important;
  }
  .md\:lh-34 {
    line-height: 34px !important;
  }
  .md\:lh-36 {
    line-height: 36px !important;
  }
  .md\:lh-38 {
    line-height: 38px !important;
  }
  .md\:lh-40 {
    line-height: 40px !important;
  }
  .md\:lh-42 {
    line-height: 42px !important;
  }
  .md\:lh-44 {
    line-height: 44px !important;
  }
  .md\:lh-46 {
    line-height: 46px !important;
  }
  .md\:lh-48 {
    line-height: 48px !important;
  }
  .md\:lh-50 {
    line-height: 50px !important;
  }
  .md\:lh-52 {
    line-height: 52px !important;
  }
  .md\:lh-54 {
    line-height: 54px !important;
  }
  .md\:lh-56 {
    line-height: 56px !important;
  }
  .md\:lh-58 {
    line-height: 58px !important;
  }
  .md\:lh-60 {
    line-height: 60px !important;
  }
  .md\:lh-62 {
    line-height: 62px !important;
  }
  .md\:lh-64 {
    line-height: 64px !important;
  }
  .md\:lh-66 {
    line-height: 66px !important;
  }
  .md\:lh-68 {
    line-height: 68px !important;
  }
  .md\:lh-70 {
    line-height: 70px !important;
  }
  .md\:lh-72 {
    line-height: 72px !important;
  }
  .md\:lh-74 {
    line-height: 74px !important;
  }
  .md\:lh-76 {
    line-height: 76px !important;
  }
  .md\:lh-78 {
    line-height: 78px !important;
  }
  .md\:lh-80 {
    line-height: 80px !important;
  }
  .md\:lh-82 {
    line-height: 82px !important;
  }
  .md\:lh-84 {
    line-height: 84px !important;
  }
  .md\:lh-86 {
    line-height: 86px !important;
  }
  .md\:lh-88 {
    line-height: 88px !important;
  }
  .md\:lh-90 {
    line-height: 90px !important;
  }
  .md\:lh-92 {
    line-height: 92px !important;
  }
  .md\:lh-94 {
    line-height: 94px !important;
  }
  .md\:lh-96 {
    line-height: 96px !important;
  }
  .md\:lh-98 {
    line-height: 98px !important;
  }
  .md\:lh-100 {
    line-height: 100px !important;
  }
}
/* ---------- lg ≥ 1024px ---------- */
/* =========================
   Base gap utilities
   ========================= */
.gap-5 {
  gap: 5px !important;
}

.gap-6 {
  gap: 6px !important;
}

.gap-8 {
  gap: 8px !important;
}

.gap-10 {
  gap: 10px !important;
}

.gap-12 {
  gap: 12px !important;
}

.gap-14 {
  gap: 14px !important;
}

.gap-16 {
  gap: 16px !important;
}

.gap-18 {
  gap: 18px !important;
}

.gap-20 {
  gap: 20px !important;
}

.gap-22 {
  gap: 22px !important;
}

.gap-24 {
  gap: 24px !important;
}

.gap-26 {
  gap: 26px !important;
}

.gap-28 {
  gap: 28px !important;
}

.gap-30 {
  gap: 30px !important;
}

.gap-32 {
  gap: 32px !important;
}

.gap-34 {
  gap: 34px !important;
}

.gap-36 {
  gap: 36px !important;
}

.gap-38 {
  gap: 38px !important;
}

.gap-40 {
  gap: 40px !important;
}

.gap-42 {
  gap: 42px !important;
}

.gap-44 {
  gap: 44px !important;
}

.gap-46 {
  gap: 46px !important;
}

.gap-48 {
  gap: 48px !important;
}

.gap-50 {
  gap: 50px !important;
}

.gap-52 {
  gap: 52px !important;
}

.gap-54 {
  gap: 54px !important;
}

.gap-56 {
  gap: 56px !important;
}

.gap-58 {
  gap: 58px !important;
}

.gap-60 {
  gap: 60px !important;
}

.gap-62 {
  gap: 62px !important;
}

.gap-64 {
  gap: 64px !important;
}

.gap-66 {
  gap: 66px !important;
}

.gap-68 {
  gap: 68px !important;
}

.gap-70 {
  gap: 70px !important;
}

.gap-72 {
  gap: 72px !important;
}

.gap-74 {
  gap: 74px !important;
}

.gap-76 {
  gap: 76px !important;
}

.gap-78 {
  gap: 78px !important;
}

.gap-80 {
  gap: 80px !important;
}

.gap-82 {
  gap: 82px !important;
}

.gap-84 {
  gap: 84px !important;
}

.gap-86 {
  gap: 86px !important;
}

.gap-88 {
  gap: 88px !important;
}

.gap-90 {
  gap: 90px !important;
}

.gap-92 {
  gap: 92px !important;
}

.gap-94 {
  gap: 94px !important;
}

.gap-96 {
  gap: 96px !important;
}

.gap-98 {
  gap: 98px !important;
}

.gap-100 {
  gap: 100px !important;
}

/* =========================
   sm (≥640px)
   ========================= */
@media (min-width: 640px) {
  .sm\:gap-5 {
    gap: 5px !important;
  }
  .sm\:gap-10 {
    gap: 10px !important;
  }
  .sm\:gap-12 {
    gap: 12px !important;
  }
  .sm\:gap-14 {
    gap: 14px !important;
  }
  .sm\:gap-16 {
    gap: 16px !important;
  }
  .sm\:gap-18 {
    gap: 18px !important;
  }
  .sm\:gap-20 {
    gap: 20px !important;
  }
  .sm\:gap-22 {
    gap: 22px !important;
  }
  .sm\:gap-24 {
    gap: 24px !important;
  }
  .sm\:gap-26 {
    gap: 26px !important;
  }
  .sm\:gap-28 {
    gap: 28px !important;
  }
  .sm\:gap-30 {
    gap: 30px !important;
  }
  .sm\:gap-32 {
    gap: 32px !important;
  }
  .sm\:gap-34 {
    gap: 34px !important;
  }
  .sm\:gap-36 {
    gap: 36px !important;
  }
  .sm\:gap-38 {
    gap: 38px !important;
  }
  .sm\:gap-40 {
    gap: 40px !important;
  }
  .sm\:gap-42 {
    gap: 42px !important;
  }
  .sm\:gap-44 {
    gap: 44px !important;
  }
  .sm\:gap-46 {
    gap: 46px !important;
  }
  .sm\:gap-48 {
    gap: 48px !important;
  }
  .sm\:gap-50 {
    gap: 50px !important;
  }
  .sm\:gap-52 {
    gap: 52px !important;
  }
  .sm\:gap-54 {
    gap: 54px !important;
  }
  .sm\:gap-56 {
    gap: 56px !important;
  }
  .sm\:gap-58 {
    gap: 58px !important;
  }
  .sm\:gap-60 {
    gap: 60px !important;
  }
  .sm\:gap-62 {
    gap: 62px !important;
  }
  .sm\:gap-64 {
    gap: 64px !important;
  }
  .sm\:gap-66 {
    gap: 66px !important;
  }
  .sm\:gap-68 {
    gap: 68px !important;
  }
  .sm\:gap-70 {
    gap: 70px !important;
  }
  .sm\:gap-72 {
    gap: 72px !important;
  }
  .sm\:gap-74 {
    gap: 74px !important;
  }
  .sm\:gap-76 {
    gap: 76px !important;
  }
  .sm\:gap-78 {
    gap: 78px !important;
  }
  .sm\:gap-80 {
    gap: 80px !important;
  }
  .sm\:gap-82 {
    gap: 82px !important;
  }
  .sm\:gap-84 {
    gap: 84px !important;
  }
  .sm\:gap-86 {
    gap: 86px !important;
  }
  .sm\:gap-88 {
    gap: 88px !important;
  }
  .sm\:gap-90 {
    gap: 90px !important;
  }
  .sm\:gap-92 {
    gap: 92px !important;
  }
  .sm\:gap-94 {
    gap: 94px !important;
  }
  .sm\:gap-96 {
    gap: 96px !important;
  }
  .sm\:gap-98 {
    gap: 98px !important;
  }
  .sm\:gap-100 {
    gap: 100px !important;
  }
}
/* =========================
   md (≥768px)
   ========================= */
@media (min-width: 768px) {
  .md\:gap-5 {
    gap: 5px !important;
  }
  .md\:gap-10 {
    gap: 10px !important;
  }
  .md\:gap-12 {
    gap: 12px !important;
  }
  .md\:gap-14 {
    gap: 14px !important;
  }
  .md\:gap-16 {
    gap: 16px !important;
  }
  .md\:gap-18 {
    gap: 18px !important;
  }
  .md\:gap-20 {
    gap: 20px !important;
  }
  .md\:gap-22 {
    gap: 22px !important;
  }
  .md\:gap-24 {
    gap: 24px !important;
  }
  .md\:gap-26 {
    gap: 26px !important;
  }
  .md\:gap-28 {
    gap: 28px !important;
  }
  .md\:gap-30 {
    gap: 30px !important;
  }
  .md\:gap-32 {
    gap: 32px !important;
  }
  .md\:gap-34 {
    gap: 34px !important;
  }
  .md\:gap-36 {
    gap: 36px !important;
  }
  .md\:gap-38 {
    gap: 38px !important;
  }
  .md\:gap-40 {
    gap: 40px !important;
  }
  .md\:gap-42 {
    gap: 42px !important;
  }
  .md\:gap-44 {
    gap: 44px !important;
  }
  .md\:gap-46 {
    gap: 46px !important;
  }
  .md\:gap-48 {
    gap: 48px !important;
  }
  .md\:gap-50 {
    gap: 50px !important;
  }
  .md\:gap-52 {
    gap: 52px !important;
  }
  .md\:gap-54 {
    gap: 54px !important;
  }
  .md\:gap-56 {
    gap: 56px !important;
  }
  .md\:gap-58 {
    gap: 58px !important;
  }
  .md\:gap-60 {
    gap: 60px !important;
  }
  .md\:gap-62 {
    gap: 62px !important;
  }
  .md\:gap-64 {
    gap: 64px !important;
  }
  .md\:gap-66 {
    gap: 66px !important;
  }
  .md\:gap-68 {
    gap: 68px !important;
  }
  .md\:gap-70 {
    gap: 70px !important;
  }
  .md\:gap-72 {
    gap: 72px !important;
  }
  .md\:gap-74 {
    gap: 74px !important;
  }
  .md\:gap-76 {
    gap: 76px !important;
  }
  .md\:gap-78 {
    gap: 78px !important;
  }
  .md\:gap-80 {
    gap: 80px !important;
  }
  .md\:gap-82 {
    gap: 82px !important;
  }
  .md\:gap-84 {
    gap: 84px !important;
  }
  .md\:gap-86 {
    gap: 86px !important;
  }
  .md\:gap-88 {
    gap: 88px !important;
  }
  .md\:gap-90 {
    gap: 90px !important;
  }
  .md\:gap-92 {
    gap: 92px !important;
  }
  .md\:gap-94 {
    gap: 94px !important;
  }
  .md\:gap-96 {
    gap: 96px !important;
  }
  .md\:gap-98 {
    gap: 98px !important;
  }
  .md\:gap-100 {
    gap: 100px !important;
  }
}
/* =========================
   lg (≥1024px)
   ========================= */
@media (min-width: 1024px) {
  .lg\:gap-5 {
    gap: 5px !important;
  }
  .lg\:gap-10 {
    gap: 10px !important;
  }
  .lg\:gap-12 {
    gap: 12px !important;
  }
  .lg\:gap-14 {
    gap: 14px !important;
  }
  .lg\:gap-16 {
    gap: 16px !important;
  }
  .lg\:gap-18 {
    gap: 18px !important;
  }
  .lg\:gap-20 {
    gap: 20px !important;
  }
  .lg\:gap-22 {
    gap: 22px !important;
  }
  .lg\:gap-24 {
    gap: 24px !important;
  }
  .lg\:gap-26 {
    gap: 26px !important;
  }
  .lg\:gap-28 {
    gap: 28px !important;
  }
  .lg\:gap-30 {
    gap: 30px !important;
  }
  .lg\:gap-32 {
    gap: 32px !important;
  }
  .lg\:gap-34 {
    gap: 34px !important;
  }
  .lg\:gap-36 {
    gap: 36px !important;
  }
  .lg\:gap-38 {
    gap: 38px !important;
  }
  .lg\:gap-40 {
    gap: 40px !important;
  }
  .lg\:gap-42 {
    gap: 42px !important;
  }
  .lg\:gap-44 {
    gap: 44px !important;
  }
  .lg\:gap-46 {
    gap: 46px !important;
  }
  .lg\:gap-48 {
    gap: 48px !important;
  }
  .lg\:gap-50 {
    gap: 50px !important;
  }
  .lg\:gap-52 {
    gap: 52px !important;
  }
  .lg\:gap-54 {
    gap: 54px !important;
  }
  .lg\:gap-56 {
    gap: 56px !important;
  }
  .lg\:gap-58 {
    gap: 58px !important;
  }
  .lg\:gap-60 {
    gap: 60px !important;
  }
  .lg\:gap-62 {
    gap: 62px !important;
  }
  .lg\:gap-64 {
    gap: 64px !important;
  }
  .lg\:gap-66 {
    gap: 66px !important;
  }
  .lg\:gap-68 {
    gap: 68px !important;
  }
  .lg\:gap-70 {
    gap: 70px !important;
  }
  .lg\:gap-72 {
    gap: 72px !important;
  }
  .lg\:gap-74 {
    gap: 74px !important;
  }
  .lg\:gap-76 {
    gap: 76px !important;
  }
  .lg\:gap-78 {
    gap: 78px !important;
  }
  .lg\:gap-80 {
    gap: 80px !important;
  }
  .lg\:gap-82 {
    gap: 82px !important;
  }
  .lg\:gap-84 {
    gap: 84px !important;
  }
  .lg\:gap-86 {
    gap: 86px !important;
  }
  .lg\:gap-88 {
    gap: 88px !important;
  }
  .lg\:gap-90 {
    gap: 90px !important;
  }
  .lg\:gap-92 {
    gap: 92px !important;
  }
  .lg\:gap-94 {
    gap: 94px !important;
  }
  .lg\:gap-96 {
    gap: 96px !important;
  }
  .lg\:gap-98 {
    gap: 98px !important;
  }
  .lg\:gap-100 {
    gap: 100px !important;
  }
}
/* =========================
   xl (≥1280px)
   ========================= */
@media (min-width: 1280px) {
  .xl\:gap-5 {
    gap: 5px !important;
  }
  .xl\:gap-10 {
    gap: 10px !important;
  }
  .xl\:gap-12 {
    gap: 12px !important;
  }
  .xl\:gap-14 {
    gap: 14px !important;
  }
  .xl\:gap-16 {
    gap: 16px !important;
  }
  .xl\:gap-18 {
    gap: 18px !important;
  }
  .xl\:gap-20 {
    gap: 20px !important;
  }
  .xl\:gap-22 {
    gap: 22px !important;
  }
  .xl\:gap-24 {
    gap: 24px !important;
  }
  .xl\:gap-26 {
    gap: 26px !important;
  }
  .xl\:gap-28 {
    gap: 28px !important;
  }
  .xl\:gap-30 {
    gap: 30px !important;
  }
  .xl\:gap-32 {
    gap: 32px !important;
  }
  .xl\:gap-34 {
    gap: 34px !important;
  }
  .xl\:gap-36 {
    gap: 36px !important;
  }
  .xl\:gap-38 {
    gap: 38px !important;
  }
  .xl\:gap-40 {
    gap: 40px !important;
  }
  .xl\:gap-42 {
    gap: 42px !important;
  }
  .xl\:gap-44 {
    gap: 44px !important;
  }
  .xl\:gap-46 {
    gap: 46px !important;
  }
  .xl\:gap-48 {
    gap: 48px !important;
  }
  .xl\:gap-50 {
    gap: 50px !important;
  }
  .xl\:gap-52 {
    gap: 52px !important;
  }
  .xl\:gap-54 {
    gap: 54px !important;
  }
  .xl\:gap-56 {
    gap: 56px !important;
  }
  .xl\:gap-58 {
    gap: 58px !important;
  }
  .xl\:gap-60 {
    gap: 60px !important;
  }
  .xl\:gap-62 {
    gap: 62px !important;
  }
  .xl\:gap-64 {
    gap: 64px !important;
  }
  .xl\:gap-66 {
    gap: 66px !important;
  }
  .xl\:gap-68 {
    gap: 68px !important;
  }
  .xl\:gap-70 {
    gap: 70px !important;
  }
  .xl\:gap-72 {
    gap: 72px !important;
  }
  .xl\:gap-74 {
    gap: 74px !important;
  }
  .xl\:gap-76 {
    gap: 76px !important;
  }
  .xl\:gap-78 {
    gap: 78px !important;
  }
  .xl\:gap-80 {
    gap: 80px !important;
  }
  .xl\:gap-82 {
    gap: 82px !important;
  }
  .xl\:gap-84 {
    gap: 84px !important;
  }
  .xl\:gap-86 {
    gap: 86px !important;
  }
  .xl\:gap-88 {
    gap: 88px !important;
  }
  .xl\:gap-90 {
    gap: 90px !important;
  }
  .xl\:gap-92 {
    gap: 92px !important;
  }
  .xl\:gap-94 {
    gap: 94px !important;
  }
  .xl\:gap-96 {
    gap: 96px !important;
  }
  .xl\:gap-98 {
    gap: 98px !important;
  }
  .xl\:gap-100 {
    gap: 100px !important;
  }
}
/* Utility for aspect ratio 55/67 (≈ 220/268) */
.ar-55-67 {
  aspect-ratio: 55/67;
}

.ar-16-14 {
  aspect-ratio: 16/14;
}

.ar-16-16 {
  aspect-ratio: 16/16;
}

.ar-16-10 {
  aspect-ratio: 16/10;
}

.ar-16-12 {
  aspect-ratio: 16/12;
  width: 100%;
}

.ar-49-58 {
  aspect-ratio: 49/58;
  width: 100%;
}

/* Utility for width 342px, height 252px */
.ar-342-252 {
  width: 100%;
  aspect-ratio: 342/252;
  /* 57/42 ~ 1.357 */
}

/* Utility for width 528px, height 752px */
.ar-528-752 {
  width: 100%;
  aspect-ratio: 528/752;
}

/* Utility for width 252px, height 300px */
.ar-252-300 {
  width: 100%;
  aspect-ratio: 252/300;
}

.ar-390-300 {
  width: 100%;
  aspect-ratio: 390/300;
}

.ar-700-652 {
  width: 100%;
  aspect-ratio: 700/652;
}

.max-w-100 {
  max-width: 100px !important;
}

.max-w-150 {
  max-width: 150px !important;
}

.max-w-200 {
  max-width: 200px !important;
}

.max-w-250 {
  max-width: 250px !important;
}

.max-w-300 {
  max-width: 300px !important;
}

.max-w-350 {
  max-width: 350px !important;
}

.max-w-400 {
  max-width: 400px !important;
}

.max-w-450 {
  max-width: 450px !important;
}

.max-w-500 {
  max-width: 500px !important;
}

.max-w-550 {
  max-width: 550px !important;
}

.max-w-600 {
  max-width: 600px !important;
}

.max-w-650 {
  max-width: 650px !important;
}

.max-w-700 {
  max-width: 700px !important;
}

.max-w-750 {
  max-width: 750px !important;
}

.max-w-800 {
  max-width: 800px !important;
}

.max-w-850 {
  max-width: 850px !important;
}

.max-w-900 {
  max-width: 900px !important;
}

.max-w-950 {
  max-width: 950px !important;
}

.max-w-1000 {
  max-width: 1000px !important;
}

/* ====== Base Grid ====== */
.grid {
  display: grid;
  gap: 1rem;
  /* default gap */
}

/* ====== Column utilities ====== */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* ====== Responsive variants ====== */
/* Small screens >= 640px */
@media (min-width: 640px) {
  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .sm\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
/* Medium screens >= 768px */
@media (min-width: 768px) {
  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
/* Large screens >= 1024px */
@media (min-width: 1024px) {
  .lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
/* Extra large screens >= 1280px */
@media (min-width: 1280px) {
  .xl\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .xl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .xl\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.top-1 {
  top: 4px;
}

.top-2 {
  top: 8px;
}

.top-3 {
  top: 12px;
}

.top-4 {
  top: 16px;
}

.filter-invert {
  filter: invert(1);
}

.bg-card {
  background-color: var(--white-3) !important;
}

[data-theme=dark] .bg-light-subtle {
  background-color: rgba(46, 166, 235, 0.0941176471) !important;
}

.btn-1 {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-1:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-1:focus {
  color: var(--text-white);
}

.btn-1.danger {
  --bg-color: rgb(197, 61, 43);
  --primary-color: rgb(197, 61, 43);
  border-color: rgba(var(--primary-color));
}

.btn-two {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-two:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-two:focus {
  color: var(--text-white);
}

.btn-two {
  background: #ffffff;
  padding: 8px 18px;
  border-color: #ffffff;
  color: #212121;
}

.btn-two:hover {
  background: #ececec;
  border-color: #ececec;
  color: #212121;
}

.theme-3-btn {
  display: inline-flex;
  height: 54px;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: rgba(var(--primary-color));
  border-radius: var(--border-radius);
  color: var(--text-white);
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  line-height: 16px;
  font-weight: 400;
}

.theme-3-btn:hover {
  background-color: transparent;
  border-color: rgba(var(--primary-color));
  color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn {
  background-color: transparent;
  color: var(--text-color);
  border-color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
}

.theme-3-btn.no-hover-effect:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
  border: 1px solid transparent;
}

.btn-lg {
  height: 44px;
  padding: 12px 24px;
}

/* ====== review section Start ======== */
.filter-menu .filter-list {
  padding: 0.75rem;
  background: var(--bg-color);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.18);
}
.filter-menu .filter-list li a {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
  background: rgba(var(--primary-color));
  color: var(--text-white);
  padding: 0.75rem 1rem;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  border-color: rgba(var(--primary-color));
  position: relative;
  transition: 0.4s;
  line-height: 1.5;
  display: inline-block;
}
.filter-menu .filter-list li a:hover {
  background: var(--bg-color);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.filter-menu .filter-list li a {
  padding: 10px 22px;
  background: transparent;
  color: var(--text-color);
  border-color: var(--border-color);
}
.filter-menu .filter-list li a:hover, .filter-menu .filter-list li a.active {
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  --text-color: var(--text-white);
  color: var(--text-color);
}

.review-thumb {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 220px;
  border: 1px solid;
  border-color: var(--border-color);
  transition: 0.6s;
  padding: 30px;
  cursor: pointer;
}
.review-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s;
}
.review-thumb:hover img {
  transform: scale(1.1);
  transition: 0.6s;
}

.review-tab-2 {
  background-color: var(--bg-color);
}
.review-tab-2 .nav-pills .nav-link {
  border-radius: 0;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  transition: 0.6s;
  background-color: transparent;
  position: relative;
}
.review-tab-2 .nav-pills .nav-link:first-child {
  margin-left: 0;
}
.review-tab-2 .nav-pills .nav-link:hover {
  color: rgba(var(--primary-color));
  background-color: transparent;
  transition: 0.6s;
}
.review-tab-2 .nav-pills .nav-link.active {
  color: rgba(var(--primary-color));
  background-color: transparent;
  transition: 0.6s;
  position: relative;
}
.review-tab-2 .nav-pills .nav-link img {
  width: 18px;
  height: 18px;
}
.review-tab-2 .nav-pills .active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: rgba(var(--primary-color));
  bottom: -16px;
  left: 0;
  z-index: 3;
}

.card-body {
  color: var(--text-color);
}
.card-body .rating i:not(:first-child) {
  margin-left: -4px;
  font-size: 14px;
}
.card-body .rating-review:before {
  content: "";
  display: inline-block;
  vertical-align: top;
  height: 15px;
  width: 0px;
  border-left: solid 1px var(--text-color);
  margin: 3px 0;
  margin-right: 8px;
}

.review-card {
  padding: 25px;
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--border-color);
}
.review-card:hover {
  transform: translateY(-5px);
}
.review-card .rv-btn {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}
.review-card .rv-btn:hover {
  color: rgba(var(--primary-color));
  transition: 0.3s;
}

.rating-img {
  max-width: 100%;
  max-height: 30px;
}

.trusted-rating span {
  width: 30px;
  height: 30px;
  background: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-nav {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
  visibility: hidden;
  opacity: 0;
}

.swiper-button-prev,
.swiper-button-next {
  width: 35px;
  height: 35px;
  background-color: var(--bg-color);
  transition: 0.3s;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-color);
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgba(var(--primary-color));
  transition: 0.3s;
}
.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
  color: var(--text-white);
}

.swiper:hover .swiper-nav {
  visibility: visible;
  opacity: 1;
}

.swiper-pagination {
  position: static;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background-color: var(--bg-color);
}

.checkmark {
  width: 40px;
  height: 40px;
}

.btn-1 {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-1:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-1:focus {
  color: var(--text-white);
}

.btn-1.danger {
  --bg-color: rgb(197, 61, 43);
  --primary-color: rgb(197, 61, 43);
  border-color: rgba(var(--primary-color));
}

.btn-two {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-two:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-two:focus {
  color: var(--text-white);
}

.btn-two {
  background: #ffffff;
  padding: 8px 18px;
  border-color: #ffffff;
  color: #212121;
}

.btn-two:hover {
  background: #ececec;
  border-color: #ececec;
  color: #212121;
}

.theme-3-btn {
  display: inline-flex;
  height: 54px;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: rgba(var(--primary-color));
  border-radius: var(--border-radius);
  color: var(--text-white);
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  line-height: 16px;
  font-weight: 400;
}

.theme-3-btn:hover {
  background-color: transparent;
  border-color: rgba(var(--primary-color));
  color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn {
  background-color: transparent;
  color: var(--text-color);
  border-color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
}

.theme-3-btn.no-hover-effect:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
  border: 1px solid transparent;
}

.btn-lg {
  height: 44px;
  padding: 12px 24px;
}

/* ====== Contact Us STARt========*/
.contact-section .section-header-2 .main-heading.contact-heading h4 {
  font-size: 42px;
}
.contact-section .contact-container {
  border: 1px solid;
  border-color: var(--border-color);
  background: var(--bg-color);
  padding: 2rem;
  color: var(--text-color);
  transition: 0.4s;
}
.contact-section .contact-container .icon span {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  --bg-color: var(--bg-gray);
  background: var(--bg-color);
  color: var(--text-color);
  font-size: 24px;
}
.contact-section .contact-container div:last-child h4 {
  font-size: 1.5rem;
}
.contact-section .contact-container div:last-child p {
  font-size: 1.2rem;
}
.contact-section .contact-container:hover {
  transition: 0.4s;
  border-color: rgba(var(--primary-color));
}
.contact-section .contact-form .form-container-left .btn.contact-btn {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}
.contact-section .contact-form .form-container-left .btn.contact-btn:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.contact-section .contact-form .form-container-left .btn.contact-btn:focus {
  color: var(--text-white);
}

.map iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .map iframe {
    border: 0;
    width: 100%;
    height: 300px;
  }
}
/* ====== Contact Us Ends========*/
.btn-1 {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-1:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-1:focus {
  color: var(--text-white);
}

.btn-1.danger {
  --bg-color: rgb(197, 61, 43);
  --primary-color: rgb(197, 61, 43);
  border-color: rgba(var(--primary-color));
}

.btn-two {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-two:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-two:focus {
  color: var(--text-white);
}

.btn-two {
  background: #ffffff;
  padding: 8px 18px;
  border-color: #ffffff;
  color: #212121;
}

.btn-two:hover {
  background: #ececec;
  border-color: #ececec;
  color: #212121;
}

.theme-3-btn {
  display: inline-flex;
  height: 54px;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: rgba(var(--primary-color));
  border-radius: var(--border-radius);
  color: var(--text-white);
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  line-height: 16px;
  font-weight: 400;
}

.theme-3-btn:hover {
  background-color: transparent;
  border-color: rgba(var(--primary-color));
  color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn {
  background-color: transparent;
  color: var(--text-color);
  border-color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
}

.theme-3-btn.no-hover-effect:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
  border: 1px solid transparent;
}

.btn-lg {
  height: 44px;
  padding: 12px 24px;
}

/* ====== Cart section Start ======= */
.cart-container .table {
  background: transparent;
  color: var(--text-color);
  vertical-align: middle;
}
.cart-container .table th,
.cart-container .table td {
  background: transparent;
  color: var(--text-color);
  padding: 15px 12px;
  vertical-align: middle;
  overflow: hidden;
}
.cart-container .table tr {
  border-color: var(--border-color) !important;
  border-bottom: 1px solid;
  text-wrap: nowrap;
  text-align: center;
}
.cart-container .table tbody tr td img {
  min-width: 80px;
  max-width: 80px;
  height: 80px;
}
.cart-container .table tbody tr td {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
}
.cart-container .table tbody tr td a {
  color: var(--text-color);
}
.cart-container .table tbody tr td .sub-total {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 600;
}
.cart-container button.btn-primary {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}
.cart-container button.btn-primary:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.cart-container button.btn-primary:focus {
  color: var(--text-white);
}
.cart-container button.btn-primary {
  text-transform: uppercase;
  background: #ffffff;
  color: var(--text-color);
  border-color: #ffffff;
}
.cart-container button.btn-primary:hover {
  background: #ffffff;
  color: var(--text-color);
  border-color: #ffffff;
}

.card.checkout-card {
  background: transparent;
  color: var(--text-color);
  border: 2px solid;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.08);
}
.card.checkout-card .card-body {
  padding: 25px;
}
.card.checkout-card .card-body .card-title {
  font-size: 20px;
  text-transform: uppercase;
}
.card.checkout-card .card-checkout-container .ceckout-item {
  color: var(--text-color);
}
.card.checkout-card .card-checkout-container .ceckout-item h5 {
  font-size: 16px;
  font-weight: 600;
}
.card.checkout-card .card-checkout-container .ceckout-item h4 {
  font-size: 22px;
  color: var(--text-color);
}
.card.checkout-card .card-checkout-container a {
  background: rgba(var(--primary-color)) !important;
  color: var(--text-white) !important;
  border-radius: 0;
  border: none;
  padding: 6px 0;
  font-size: 16px;
  font-weight: 500;
  transition: 0.4s;
  display: inline-block;
  padding: 12px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

/* ====== Cart section Ends ======= */
/* ======= Default Quantity style Start ====== */
.quantity {
  display: inline-flex;
  vertical-align: top;
  overflow: hidden;
  transition: 0.4s;
  line-height: 1;
}
.quantity input {
  height: 30px;
  background: transparent;
  color: var(--text-color);
  border: 0;
  box-shadow: none;
  outline: none;
  text-align: center;
  border-right: 1px solid;
  border-left: 1px solid;
  border-color: var(--border-color);
  transition: 0.4s;
}
.quantity input:nth-child(1) {
  min-width: 25px;
  min-height: unset;
  font-size: 18px;
  font-weight: bold;
}
.quantity input:nth-child(2) {
  width: 30px;
}
.quantity input:nth-child(3) {
  min-width: 25px;
  border-right: 0;
  font-size: 16px;
  font-weight: 500;
}
.quantity .minus {
  border-left: 0;
  border-right: 0;
}
.quantity .plus {
  border-left: 0;
  border-right: 0;
}
.quantity input[type=button]:hover {
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color) !important;
  transition: 0.4s;
  --text-color: var(--text-white);
  color: var(--text-color);
}

.chek-delivery {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}
.chek-delivery:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.chek-delivery:focus {
  color: var(--text-white);
}
.chek-delivery {
  padding: 14px 24px;
}

.quantity-price {
  font-size: 14px;
}
.quantity-price .item {
  color: #c4c4c4;
  font-weight: 500;
}
.quantity-price .item i {
  font-size: 10px;
}
.quantity-price .item-price {
  color: var(--text-color);
  font-weight: 600;
}

.cart-icon {
  font-size: 12px;
  margin-top: 0;
}

/* ======= Default Quantity style Ends ====== */
.step-container {
  max-width: 700px;
}
.step-container .indicator-bar {
  margin: 40px 0;
  margin-top: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-container .indicator-bar .step {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.step-container .indicator-bar .step p {
  font-weight: 500;
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 8px;
}
.step-container .indicator-bar .step .bullet {
  height: 40px;
  width: 40px;
  border: 2px solid var(--border-color);
  background-color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: 0.2s;
  font-weight: 500;
  font-size: 17px;
}
.step-container .indicator-bar .step .bullet.active {
  --border-color: rgba(var(--primary-color));
  border-color: var(--border-color);
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
}
.step-container .indicator-bar .step .bullet.active span {
  color: var(--text-white);
}
.step-container .indicator-bar .step .bullet span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.step-container .indicator-bar .step:before,
.step-container .indicator-bar .step:after {
  position: absolute;
  content: "";
  height: 3px;
  width: 100%;
  --bg-color: #a2a3a5;
  background-color: var(--bg-color);
  top: 18px;
  left: 50%;
  z-index: 0;
  display: block;
}
.step-container .indicator-bar .step.active:after {
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  transform: scaleX(0);
  transform-origin: left;
  animation: animate 0.3s linear forwards;
}
@keyframes animate {
  100% {
    transform: scaleX(1);
  }
}
.step-container .indicator-bar .step:last-child:before,
.step-container .indicator-bar .step:last-child:after {
  display: none;
}
.step-container .indicator-bar .step p.active {
  color: var(--text-color);
  transition: 0.2s linear;
}
.step-container .indicator-bar .step .check {
  --text-color: var(--text-white);
  color: var(--text-color);
}

@media (max-width: 600px) {
  .cart-container .table thead {
    display: none;
  }
  .cart-container .table th,
  .cart-container .table td {
    padding: 8px 10px;
  }
  .cart-container .table,
  .cart-container .table tbody .table tr,
  .cart-container .table tr th,
  .cart-container .table tr td,
  .cart-container .table tbody tr td {
    width: 100%;
    min-width: 100% !important;
    max-width: 100% !important;
    display: block;
    border: 0;
  }
  .cart-container .table {
    border: 1px solid var(--border-color);
    margin-bottom: 0;
    border-radius: 10px;
  }
  .cart-container .table tbody tr .remove-icon {
    position: relative;
  }
  .cart-container .table tbody tr .remove-icon .remove-item {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }
  .cart-container .table tr {
    display: block;
    width: 100%;
    border: 0;
    text-wrap: wrap;
    padding: 30px 20px;
  }
  .cart-container .table tr + tr {
    border-top: 1px solid var(--border-color);
  }
  .cart-container .table > tbody {
    display: block;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .step-container .indicator-bar {
    margin: 20px 0;
    margin-top: 0;
  }
}
.btn-1 {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-1:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-1:focus {
  color: var(--text-white);
}

.btn-1.danger {
  --bg-color: rgb(197, 61, 43);
  --primary-color: rgb(197, 61, 43);
  border-color: rgba(var(--primary-color));
}

.btn-two {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-two:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-two:focus {
  color: var(--text-white);
}

.btn-two {
  background: #ffffff;
  padding: 8px 18px;
  border-color: #ffffff;
  color: #212121;
}

.btn-two:hover {
  background: #ececec;
  border-color: #ececec;
  color: #212121;
}

.theme-3-btn {
  display: inline-flex;
  height: 54px;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: rgba(var(--primary-color));
  border-radius: var(--border-radius);
  color: var(--text-white);
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  line-height: 16px;
  font-weight: 400;
}

.theme-3-btn:hover {
  background-color: transparent;
  border-color: rgba(var(--primary-color));
  color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn {
  background-color: transparent;
  color: var(--text-color);
  border-color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
}

.theme-3-btn.no-hover-effect:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
  border: 1px solid transparent;
}

.btn-lg {
  height: 44px;
  padding: 12px 24px;
}

/* ======== premium-subsciption ======*/
.premium-thumb {
  width: 100%;
  padding-top: 100% !important;
  height: 350px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.premium-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.premium-thumb .badge {
  position: absolute;
  top: 20px;
  left: 20px;
}

.premium-right-container .form-check .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 0;
  box-shadow: none;
  background-color: var(--bs-light);
}
.premium-right-container .form-check .form-check-input:checked {
  background-color: rgba(var(--primary-color));
  border-color: rgba(var(--primary-color));
}
.premium-right-container .form-check .form-check-input:focus {
  border-color: rgba(var(--primary-color));
}
.premium-right-container .form-check .form-check-label {
  line-height: 16px;
}
.premium-right-container ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.premium-top {
  color: var(--text-white);
}
.premium-top .breadcrumb {
  margin-bottom: 0;
  margin-left: 0;
}
.premium-top .breadcrumb .breadcrumb-item {
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.premium-top .breadcrumb .breadcrumb-item a {
  color: var(--text-color);
}
.premium-top .breadcrumb .breadcrumb-item.active {
  font-weight: 600;
  opacity: 1;
  color: rgb(255, 186, 35);
}
.premium-top .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  color: var(--text-color);
  content: "\f054";
  font-family: "fontAwesome";
  font-size: 13px !important;
  font-weight: 400;
  float: none;
}
.premium-top .breadcrumb {
  letter-spacing: -0.5px;
}
.premium-top .breadcrumb .breadcrumb-item:last-child:before {
  display: none;
}
.premium-top .pre-top-right a {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
}
.premium-top .pre-top-right a i {
  font-weight: 600;
}

.pre-heading {
  font-size: 30px;
}

.pre-price span {
  font-size: 20px;
  font-weight: 700;
}

.pre-documentation {
  padding-left: 22px;
}
.pre-documentation font {
  color: var(--text-color) !important;
}
.pre-documentation ul li {
  list-style: disc;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  margin-left: 20px;
}
.pre-documentation ol li {
  margin-bottom: 10px;
}
.pre-documentation-2 li {
  color: #e74c3c !important;
}

.pre-documentation::marker {
  color: black;
}

.pre-variations span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
}
.pre-variations select {
  padding: 0 15px;
  width: 100%;
  max-width: 260px;
  background-color: transparent;
  height: 45px;
  color: var(--text-color);
  border: 2px solid;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 500;
  background-image: url("../../img/download.svg");
  background-position: right 10px top 50%;
  background-size: auto 18px;
  background-repeat: no-repeat;
}
.pre-variations select option {
  background: var(--bg-color);
  color: var(--text-color);
}

.premium-form form .form-control {
  height: 45px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-color);
  padding: 0 16px;
  box-shadow: none;
}
.premium-form form .form-control:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.cart-variation .quantity.cart-variation-quantity input {
  height: 32px;
  width: 32px;
}
.cart-variation button.btn {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}
.cart-variation button.btn:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.cart-variation button.btn:focus {
  color: var(--text-white);
}
.cart-variation button.btn {
  height: 42px !important;
  border: 2px solid;
  text-transform: uppercase;
  border-color: rgba(255, 255, 255, 0.2);
}

.documentation-list .list-inner .list-inner-item i {
  color: #1389e9;
}
.documentation-list .list-inner .list-inner-item .whatsapp {
  color: var(--text-color);
}
.documentation-list .list-inner .detail-btn button {
  border: 1px solid var(--border-color);
  color: var(--text-color);
  transition: 0.4s;
}
.documentation-list .list-inner .detail-btn button:hover {
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  --text-color: var(--text-white);
  color: var(--text-color);
  transition: 0.4s;
}

.view-live {
  border-bottom: 1px solid;
  border-color: rgba(255, 255, 255, 0.2);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.view-live .subscription-view {
  background-color: rgb(211, 247, 238);
  color: #585a5d;
  padding: 15px 20px;
}
.view-live .subscription-view span {
  font-size: 14px;
  font-weight: 500;
}
.view-live .subscription-view span i {
  color: var(--bg-color-3);
}
.view-live .subscription-view span:nth-child(2) {
  font-weight: 600;
}

.premium-right-bottom .sku-wrapper {
  font-size: 15px;
  font-weight: 500;
}
.premium-right-bottom .sku-wrapper span:first-child {
  font-weight: 600;
}
.premium-right-bottom .sku-wrapper span:last-child {
  color: var(--text-color);
}
.premium-right-bottom .sku-wrapper a {
  color: var(--text-color);
}
.premium-right-bottom .sku-wrapper a:hover {
  --text-color: rgba(var(--primary-color));
  color: var(--text-color);
}

/* ====== premium Subscription Tab Start====== */
.premium-subscription-tab .tab-container .nav-tabs {
  border-bottom: 0;
}
.premium-subscription-tab .tab-container .nav-tabs ul li a {
  font-size: 15px;
}
.premium-subscription-tab .tab-container .tab-content .description p {
  font-size: 16px;
  font-weight: 500;
}
.premium-subscription-tab .tab-container .tab-content font {
  color: var(--text-color) !important;
}
.premium-subscription-tab .tab-container .tab-content ul li {
  list-style: disc;
  margin-left: 20px;
}
.premium-subscription-tab .tab-container .tab-content .review-btn {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}
.premium-subscription-tab .tab-container .tab-content .review-btn:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.premium-subscription-tab .tab-container .tab-content .review-btn:focus {
  color: var(--text-white);
}
.premium-subscription-tab .tab-container .tab-content .review-btn {
  display: inline-flex;
}
.premium-subscription-tab .tab-container .tab-content .review-btn:hover {
  --bg-color: transparent;
  background-color: var(--bg-color);
  --border-color: rgba(var(--primary-color));
  border-color: var(--border-color);
  --text-color: rgba(var(--primary-color));
  color: var(--text-color);
}
.premium-subscription-tab .tab-container .tab-content .review-btn {
  font-size: 16px;
}

.color-container p {
  font-weight: 600;
  color: var(--text-color);
}

.btn {
  border: 1px solid var(--border-color);
  --bg-color: rgba(var(--primary-color), 0.1);
  background-color: var(--bg-color);
  color: var(--text-color);
  font-weight: 400;
}

.btn-check:checked + .btn,
.btn.active,
.btn:hover,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  --bg-color: rgba(var(--primary-color));
  background-color: var(--bg-color) !important;
  --border-color: rgba(var(--primary-color)) !important;
  border-color: var(--border-color) !important;
  --text-color: var(--text-white) !important;
  color: var(--text-color) !important;
}

/* ====== premium Subscription Tab Ends====== */
/* ========= product details two start ========*/
.card-custom {
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}
.card-custom .form-select,
.card-custom .c-btn {
  color: var(--text-secondary);
}

.c-btn {
  font-size: 20px;
  font-weight: 400;
}

.c-number {
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  border: 0;
  outline: none;
  width: 20px;
  text-align: center;
  --bg-color: transparent;
  background-color: var(--bg-color);
  --text-color: var(--text-secondary);
  color: var(--text-color);
}

.list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-color);
  --text-color: var(--text-secondary);
  font-weight: 400;
}

.list-item i {
  color: var(--text-color);
  --text-color: rgba(var(--primary-color));
}

.custom-radio-btn {
  border: 1px solid var(--border-color);
  --bg-color: rgba(var(--primary-color));
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 6px 18px;
  --border-radius: 24px;
  border-radius: var(--border-radius) !important;
  font-size: 14px;
  transition: all 0.25s ease-in-out;
}

.btn-check:checked + .custom-radio-btn,
.custom-radio-btn:hover {
  --bg-color: rgba(var(--primary-color));
  background-color: var(--bg-color) !important;
  --border-color: rgba(var(--primary-color));
  --text-color: var(--text-white);
  color: var(--text-color) !important;
}

.price-text {
  --text-color: rgba(var(--primary-color));
  color: var(--text-color);
  font-weight: 600;
}

.nav-tabs.custom-tab {
  border-bottom: 1px solid var(--border-color);
}
.nav-tabs.custom-tab .nav-link {
  margin-bottom: 16px;
  padding: 0;
  border: 0;
  color: var(--text-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  display: inline-block;
  position: relative;
}
.nav-tabs.custom-tab .nav-link.active, .nav-tabs.custom-tab .nav-link:hover {
  color: var(--text-color);
  --bg-color: transparent;
  background-color: var(--bg-color);
}
.nav-tabs.custom-tab .nav-link.active::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 0px;
  width: 14px;
  height: 14px;
  --bg-color: rgba(var(--primary-color));
  background-color: var(--bg-color);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  z-index: 2;
}
.nav-tabs.custom-tab .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -24px;
  right: 0px;
  width: 14px;
  height: 14px;
  --bg-color: rgba(var(--primary-color));
  background-color: var(--bg-color);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  z-index: 2;
}
.nav-tabs.custom-tab .nav-link.active span::after {
  content: "";
  left: 0;
  right: 0;
  margin: auto;
  width: 95%;
  height: 2px;
  background-color: var(--bg-color);
  --bg-color: #0ea293;
  position: absolute;
  bottom: -18px;
  z-index: 1;
}

.btn-1 {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-1:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-1:focus {
  color: var(--text-white);
}

.btn-1.danger {
  --bg-color: rgb(197, 61, 43);
  --primary-color: rgb(197, 61, 43);
  border-color: rgba(var(--primary-color));
}

.btn-two {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-two:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-two:focus {
  color: var(--text-white);
}

.btn-two {
  background: #ffffff;
  padding: 8px 18px;
  border-color: #ffffff;
  color: #212121;
}

.btn-two:hover {
  background: #ececec;
  border-color: #ececec;
  color: #212121;
}

.theme-3-btn {
  display: inline-flex;
  height: 54px;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: rgba(var(--primary-color));
  border-radius: var(--border-radius);
  color: var(--text-white);
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  line-height: 16px;
  font-weight: 400;
}

.theme-3-btn:hover {
  background-color: transparent;
  border-color: rgba(var(--primary-color));
  color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn {
  background-color: transparent;
  color: var(--text-color);
  border-color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
}

.theme-3-btn.no-hover-effect:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
  border: 1px solid transparent;
}

.btn-lg {
  height: 44px;
  padding: 12px 24px;
}

/* ========= checkout-form Start ========= */
.checkout-form-container {
  border: 1px solid;
  border-color: var(--border-color);
  box-shadow: var(--box-shadow);
}
.checkout-form-container .form-check {
  line-height: 16px;
}
.checkout-form-container .form-check .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 0;
  box-shadow: none;
}
.checkout-form-container .form-check .form-check-input:checked {
  background-color: rgba(var(--primary-color));
  border-color: rgba(var(--primary-color));
}
.checkout-form-container .form-check .form-check-input:focus {
  border-color: rgba(var(--primary-color));
}
.checkout-form-container .form-check .form-check-label {
  cursor: pointer;
}

.form-container-left {
  background: var(--bg-color);
  padding: 30px 30px;
}
.form-container-left .billing-details {
  font-size: 24px;
  text-transform: capitalize;
}
.form-container-left label {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
}
.form-container-left .information h4 {
  text-transform: capitalize;
  font-size: 24px;
}

.form-container-left.form-container-right {
  background: transparent;
  padding: 30px 30px;
}
.form-container-left.form-container-right .order-details {
  font-size: 24px;
  text-transform: capitalize;
}
.form-container-left.form-container-right .total-order {
  background: var(--bg-color-7);
  margin-bottom: 20px;
  padding: 15px 15px;
}
.form-container-left.form-container-right .total-order .table tr {
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.form-container-left.form-container-right .total-order .table tr td, .form-container-left.form-container-right .total-order .table tr th {
  background: transparent;
  border: 0;
  color: var(--text-color);
  padding: 0;
  font-weight: 600;
}
.form-container-left.form-container-right .total-order .table thead tr {
  border-bottom: 2px solid;
  border-color: var(--border-color);
}
.form-container-left.form-container-right .total-order .table thead tr th {
  font-size: 18px;
  font-weight: 700;
}
.form-container-left.form-container-right .total-order .table tbody tr {
  border-bottom: 1px solid;
  border-color: var(--border-color);
}
.form-container-left.form-container-right .total-order .table tbody tr td:first-child {
  text-wrap: wrap;
}
.form-container-left.form-container-right .total-order .table tbody tr td:last-child {
  text-wrap: nowrap;
}
.form-container-left.form-container-right .total-order .table tbody tr:last-child td:first-child {
  font-size: 18px;
  font-weight: 700;
}
.form-container-left.form-container-right .total-order .table tbody tr:last-child td:last-child {
  font-size: 22px;
  font-weight: 700;
}
.form-container-left.form-container-right .payment-getway {
  border-bottom: 1px solid;
  border-color: var(--border-color);
  padding-bottom: 15px;
  margin-bottom: 15px;
  overflow: hidden;
}
.form-container-left.form-container-right .payment-getway .form-check img {
  height: 25px;
}
.form-container-left.form-container-right .payment-getway #bkashForm {
  display: none;
}
.form-container-left.form-container-right .payment-getway #rocketForm {
  display: none;
}
.form-container-left.form-container-right .payment-getway .payment-form {
  background: var(--bg-color-7);
  padding: 20px;
}
.form-container-left.form-container-right .payment-getway .payment-form p {
  font-size: 16px;
  color: var(--text-color);
}
.form-container-left.form-container-right .payment-getway .payment-form .qr-code img {
  max-height: 40px;
}
.form-container-left.form-container-right .form-text {
  color: var(--text-color);
  font-size: 16px;
  border-bottom: 1px solid;
  border-color: var(--border-color);
  padding-bottom: 15px;
  margin-bottom: 15px;
  overflow: hidden;
}
.form-container-left.form-container-right .form-text a {
  color: var(--text-color);
  font-weight: 700;
}
.form-container-left.form-container-right .form-container-right-bottom {
  font-size: 16px;
}
.form-container-left.form-container-right .form-container-right-bottom a {
  color: var(--text-color);
  font-weight: 700;
}
.form-container-left.form-container-right .checkout-btn button.btn {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}
.form-container-left.form-container-right .checkout-btn button.btn:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.form-container-left.form-container-right .checkout-btn button.btn:focus {
  color: var(--text-white);
}
.form-container-left.form-container-right .checkout-btn button.btn {
  width: 100%;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  padding: 0.75rem 0.75rem;
}

.iti {
  display: block;
  color: var(--text-color);
}
.iti .iti__search-input {
  width: 100%;
  box-shadow: none;
  border-bottom: 1px solid var(--border-color);
  outline: none;
  height: 42px;
  padding: 0 16px;
  background: var(--bg-color);
  color: var(--text-color);
}

/* ====== section title Animation Start =======*/
@keyframes section-animation {
  0% {
    width: 0;
  }
  15% {
    width: 100%;
  }
  85% {
    opacity: 1;
  }
  90% {
    opacity: 0;
    width: 100%;
  }
  to {
    opacity: 0;
    width: 0;
  }
}
/* ====== section title Animation ends =======*/
/* ====== Dropdown menu Animation Start ======*/
@keyframes slideup {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateY(25px);
    transition: 0.6s;
  }
  to {
    transform: translateY(0);
    transition: 0.6s;
    opacity: 1;
    visibility: visible;
  }
}
/* ====== Dropdown menu Animation Ends ======*/
/* ===== fadeInRight animation customize ========*/
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

/* ===== fadeInRight animation customize end ========*/
/* ===== fadeInUp animation customize Start ========*/
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== fadeInUp animation customize Start ========*/
/* ====== tp-svg-line ========*/
@keyframes tp-svg-line {
  to {
    stroke-dashoffset: 350;
  }
}
/* ====== tp-svg-line ========*/
.btn-1 {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-1:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-1:focus {
  color: var(--text-white);
}

.btn-1.danger {
  --bg-color: rgb(197, 61, 43);
  --primary-color: rgb(197, 61, 43);
  border-color: rgba(var(--primary-color));
}

.btn-two {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-two:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-two:focus {
  color: var(--text-white);
}

.btn-two {
  background: #ffffff;
  padding: 8px 18px;
  border-color: #ffffff;
  color: #212121;
}

.btn-two:hover {
  background: #ececec;
  border-color: #ececec;
  color: #212121;
}

.theme-3-btn {
  display: inline-flex;
  height: 54px;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: rgba(var(--primary-color));
  border-radius: var(--border-radius);
  color: var(--text-white);
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  line-height: 16px;
  font-weight: 400;
}

.theme-3-btn:hover {
  background-color: transparent;
  border-color: rgba(var(--primary-color));
  color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn {
  background-color: transparent;
  color: var(--text-color);
  border-color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
}

.theme-3-btn.no-hover-effect:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
  border: 1px solid transparent;
}

.btn-lg {
  height: 44px;
  padding: 12px 24px;
}

.form-style {
  border: 1px solid;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  padding: 30px;
}
.form-style .sign-content {
  width: 100%;
}
.form-style .sign-content .top-form-btn a.btn {
  background: rgba(var(--primary-color));
  color: var(--text-white);
  padding: 0.75rem 1rem;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  border-color: rgba(var(--primary-color));
  position: relative;
  transition: 0.4s;
  line-height: 1.5;
  display: inline-block;
}
.form-style .sign-content .top-form-btn a.btn:hover {
  background: var(--bg-color);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.form-style .sign-content .top-form-btn a.btn {
  padding: 0.75rem 1.5rem;
}
.form-style .google-signup {
  width: 100%;
  padding: 11px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  border-color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  border-radius: 5px;
}
.form-style .google-signup img {
  margin-right: 10px;
}
.form-style .or-sign-email {
  height: 1px;
  width: 27%;
  background: rgba(255, 255, 255, 0.2);
}
.form-style .or-sign-email p {
  font-size: 16px;
}
.form-style .form-label {
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 12px;
}
.form-style label {
  color: var(--text-color);
  font-weight: 500;
}
.form-style .form-control {
  border: 1px solid;
  color: var(--text-color);
  border-color: var(--border-color);
  background: transparent;
}
.form-style .password-toggle-icon i {
  font-size: 16px;
  line-height: 1;
  color: var(--text-color);
  transition: color 0.3s ease-in-out;
}
.form-style .password-toggle-icon i:hover {
  color: var(--text-color);
}
.form-style .submit {
  background: rgba(var(--primary-color));
  color: var(--text-white);
  padding: 0.75rem 1rem;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  border-color: rgba(var(--primary-color));
  position: relative;
  transition: 0.4s;
  line-height: 1.5;
  display: inline-block;
}
.form-style .submit:hover {
  background: var(--bg-color);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.form-style .submit {
  border: 1px solid rgba(var(--primary-color));
}
.form-style .form-end-btn a.btn {
  background: rgba(var(--primary-color));
  color: var(--text-white);
  padding: 0.75rem 1rem;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  border-color: rgba(var(--primary-color));
  position: relative;
  transition: 0.4s;
  line-height: 1.5;
  display: inline-block;
}
.form-style .form-end-btn a.btn:hover {
  background: var(--bg-color);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.form-style .form-end-btn a.btn {
  border: 0;
}
.form-style .checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.form-style .psw a {
  font-weight: 500;
  color: var(--text-color);
  transition: 0.3s;
}
.form-style .psw a:hover {
  color: rgba(var(--primary-color));
  transition: 0.3s;
}
.form-style .checkbox input {
  position: absolute;
  width: 0;
  left: 50px;
  height: 0;
  opacity: 0;
  cursor: pointer;
}
.form-style .checkbox .checkmark {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}
.form-style .checkbox:hover .checkmark {
  background: #ffffff;
  transition: all 0.2s ease;
}
.form-style .checkbox input:checked ~ .checkmark {
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  border: 1px solid var(--bg-color);
}
.form-style .checkbox .checkmark::after {
  position: absolute;
  display: block;
  content: "";
  left: 50%;
  top: 40%;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 1px 1px 0;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  transition: all 0.2s ease;
}
.form-style .checkbox input:checked ~ .checkmark::after {
  opacity: 1;
  transition: all 0.2s ease;
}
.form-style .form-end a {
  color: var(--text-color);
  font-weight: 600;
  transition: 0.3s;
}
.form-style .form-end a:hover {
  color: rgba(var(--primary-color));
  transition: 0.3s;
}

.edit-resume .color-tx-1 .form-label {
  color: var(--clr-black);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}
.edit-resume .color-tx-1 label {
  color: var(--clr-black);
  font-weight: 600;
  font-size: 14px;
  display: flex;
}
.edit-resume .color-tx-1 .form-control {
  color: var(--clr-black) !important;
  font-size: 14px;
  border-radius: 6px;
}
.edit-resume .color-tx-1 .form-control::-moz-placeholder {
  color: var(--clr-black) !important;
  font-size: 14px;
}
.edit-resume .color-tx-1 .form-control::placeholder {
  color: var(--clr-black) !important;
  font-size: 14px;
}
.edit-resume .color-tx-2 .form-label {
  color: var(--clr-black-2);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}
.edit-resume .color-tx-2 label {
  color: var(--clr-black-2);
  font-weight: 600;
  font-size: 14px;
  display: flex;
}
.edit-resume .color-tx-2 .form-control {
  color: var(--clr-black-2) !important;
  font-size: 14px;
  border-radius: 6px;
}
.edit-resume .color-tx-2 .form-control::-moz-placeholder {
  color: var(--clr-black-2) !important;
  font-size: 14px;
}
.edit-resume .color-tx-2 .form-control::placeholder {
  color: var(--clr-black-2) !important;
  font-size: 14px;
}

.iti {
  position: relative;
  display: block !important;
}

.btn-1 {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-1:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-1:focus {
  color: var(--text-white);
}

.btn-1.danger {
  --bg-color: rgb(197, 61, 43);
  --primary-color: rgb(197, 61, 43);
  border-color: rgba(var(--primary-color));
}

.btn-two {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}

.btn-two:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}

.btn-two:focus {
  color: var(--text-white);
}

.btn-two {
  background: #ffffff;
  padding: 8px 18px;
  border-color: #ffffff;
  color: #212121;
}

.btn-two:hover {
  background: #ececec;
  border-color: #ececec;
  color: #212121;
}

.theme-3-btn {
  display: inline-flex;
  height: 54px;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: rgba(var(--primary-color));
  border-radius: var(--border-radius);
  color: var(--text-white);
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  line-height: 16px;
  font-weight: 400;
}

.theme-3-btn:hover {
  background-color: transparent;
  border-color: rgba(var(--primary-color));
  color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn {
  background-color: transparent;
  color: var(--text-color);
  border-color: rgba(var(--primary-color));
}

.theme-3-btn.outline-btn:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
}

.theme-3-btn.no-hover-effect:hover {
  background-color: rgba(var(--primary-color));
  color: var(--text-white);
  border: 1px solid transparent;
}

.btn-lg {
  height: 44px;
  padding: 12px 24px;
}

.user-dashboard .main-header .header-top {
  background: var(--bg-color) !important;
}
.user-dashboard .main-header .header-top .dashboard-slider {
  width: 100%;
  height: 40px;
  overflow: hidden;
}
.user-dashboard .main-header .header-top .dashboard-slider .swiper-slide {
  height: 40px;
  white-space: nowrap;
  text-align: left;
  line-height: 40px;
}
.user-dashboard .main-header .header-top .dashboard-slider .swiper-slide a {
  color: var(--text-color);
}
.user-dashboard .main-header .header-top .dashboard-slider .swiper-slide a i {
  font-size: 12px;
}
.user-dashboard .dashboard-tools {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}
.user-dashboard .dashboard-tools:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.user-dashboard .dashboard-tools:focus {
  color: var(--text-white);
}
.user-dashboard .offcanvas.user-dashboard-nav {
  background-color: var(--bg-color) !important;
  color: var(--text-color);
  border: 0;
}
.user-dashboard .offcanvas.user-dashboard-nav .offcanvas-body {
  padding: 20px 24px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.user-dashboard .offcanvas.user-dashboard-nav .offcanvas-body:after {
  content: "";
  background-color: #2c3138;
  width: 400px;
  height: 324px;
  border-radius: 50%;
  z-index: -1;
  position: absolute;
  top: -164px;
  right: -23px;
  transform: rotate(134deg);
}
.user-dashboard .offcanvas.user-dashboard-nav .offcanvas-body .user-profile .profile-thumb {
  width: 5rem;
  height: 5rem;
  border: 1px solid var(--text-color);
  padding: 2px;
}
.user-dashboard .offcanvas.user-dashboard-nav .offcanvas-body .user-profile .profile-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.user-dashboard .dashboard-navbar .dashboard-nav-item {
  color: var(--text-color);
  font-weight: 500;
  font-size: 16px;
  transition: 0.4s;
  padding: 8px 0;
}
.user-dashboard .dashboard-navbar .dashboard-nav-item i {
  font-size: 18px;
}
.user-dashboard .dashboard-navbar .dashboard-nav-item:hover {
  --text-color: rgba(var(--primary-color));
  transition: 0.4s;
}
.user-dashboard .dashboard-navbar .dashboard-nav-item.active {
  color: var(--text-color);
}
.user-dashboard .dashboard-right-container .dashboard-right-top {
  border: 1px solid;
  border-color: var(--border-color);
  padding: 30px;
  background: var(--bg-color);
  box-shadow: var(--box-shadow);
}
.user-dashboard .dashboard-right-container .dashboard-right-top div:first-child div span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 5px;
  display: block;
}
.user-dashboard .dashboard-right-container .dashboard-right-top div:first-child div h4 {
  color: var(--text-color);
  font-weight: 600;
  font-size: 24px;
}
.user-dashboard .dashboard-right-container .dashboard-right-top div:last-child a.btn {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}
.user-dashboard .dashboard-right-container .dashboard-right-top div:last-child a.btn:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.user-dashboard .dashboard-right-container .dashboard-right-top div:last-child a.btn:focus {
  color: var(--text-white);
}
.user-dashboard .dashboard-right-container .dashboard-right-top div:last-child a.btn {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 14px;
}
.user-dashboard .dashboard-right-container .dashboard-right-top div:last-child a.btn i {
  font-size: 15px;
}
.user-dashboard .dashboard-right-container .overview h4 {
  color: var(--text-color);
}
.user-dashboard .dashboard-right-container .overview-card-container .col .dashboard-box-item {
  border-style: solid;
  border-width: 0 0 0 3px;
  padding: 24px;
  box-shadow: var(--box-shadow);
}
.user-dashboard .dashboard-right-container .overview-card-container .col .dashboard-box-item i {
  font-size: 18px;
  border: 1px solid var(--border-color);
  width: 50px;
  height: 50px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-dashboard .dashboard-right-container .overview-card-container .col .dashboard-box-item i img {
  height: 30px;
}
.user-dashboard .dashboard-right-container .overview-card-container .col .dashboard-box-item div h5 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
}
.user-dashboard .dashboard-right-container .overview-card-container .col .dashboard-box-item div h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-color);
}
.user-dashboard .dashboard-right-container .overview-card-container .col:nth-child(1) .dashboard-box-item {
  border-color: rgb(32, 126, 214);
}
.user-dashboard .dashboard-right-container .overview-card-container .col:nth-child(2) .dashboard-box-item {
  border-color: rgb(32, 214, 144);
}
.user-dashboard .dashboard-right-container .overview-card-container .col:nth-child(3) .dashboard-box-item {
  border-color: rgb(156, 32, 214);
}
.user-dashboard .dashboard-right-container .overview-card-container .col:nth-child(4) .dashboard-box-item {
  border-color: rgb(230, 42, 83);
}
.user-dashboard .dashboard-right-container .overview-card-container .col:nth-child(5) .dashboard-box-item {
  border-color: rgb(32, 193, 214);
}
.user-dashboard .dashboard-right-container .overview-card-container .col:nth-child(6) .dashboard-box-item {
  border-color: rgb(214, 156, 32);
}
.user-dashboard .dashboard-right-container .dashboard-right-bottom {
  border: 1px solid;
  border-color: var(--border-color);
  padding: 24px;
  box-shadow: var(--box-shadow);
}
.user-dashboard .dashboard-right-container .dashboard-right-bottom h4 {
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid;
  border-color: var(--border-color);
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.user-dashboard .dashboard-right-container .dashboard-right-bottom .dashboard-right-bottom-item {
  border-bottom: 1px solid;
  border-color: var(--border-color);
  margin-bottom: 15px;
  padding-bottom: 15px;
  overflow: hidden;
}
.user-dashboard .dashboard-right-container .dashboard-right-bottom .dashboard-right-bottom-item .user-details img {
  height: 30px;
}
.user-dashboard .dashboard-right-container .dashboard-right-bottom .dashboard-right-bottom-item .user-details div span {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-color);
}
.user-dashboard .dashboard-right-container .dashboard-right-bottom .dashboard-right-bottom-item .user-details div span:nth-child(1) {
  color: var(--text-color);
}
.user-dashboard .dashboard-right-container .dashboard-right-bottom .dashboard-right-bottom-item .user-details div span:nth-child(2) {
  font-weight: 600;
  font-size: 16px;
}
.user-dashboard .dashboard-right-container .dashboard-right-bottom .dashboard-right-bottom-item .user-detail-btn a.btn {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}
.user-dashboard .dashboard-right-container .dashboard-right-bottom .dashboard-right-bottom-item .user-detail-btn a.btn:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.user-dashboard .dashboard-right-container .dashboard-right-bottom .dashboard-right-bottom-item .user-detail-btn a.btn:focus {
  color: var(--text-white);
}
.user-dashboard .dashboard-right-container .dashboard-right-bottom .dashboard-right-bottom-item .user-detail-btn a.btn {
  font-size: 16px;
  font-weight: 500;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top {
  padding: 24px;
  box-shadow: var(--box-shadow);
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top div:first-child h4 {
  color: var(--text-color);
  font-weight: 600;
  font-size: 20px;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top div:first-child a.btn {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top div:first-child a.btn:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top div:first-child a.btn:focus {
  color: var(--text-white);
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top div:first-child a.btn {
  font-size: 16px;
  font-weight: 500;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .table-responsive tr {
  vertical-align: middle;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .table-responsive tr th,
.user-dashboard .dashboard-right-container .dashboard-right-table-top .table-responsive tr td {
  background: transparent;
  color: var(--text-color);
  padding: 10px;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .table-responsive tbody tr th,
.user-dashboard .dashboard-right-container .dashboard-right-table-top .table-responsive tbody tr td {
  font-weight: 500;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .table-responsive tbody tr td:nth-child(5) a {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .table-responsive tbody tr td:nth-child(5) a:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .table-responsive tbody tr td:nth-child(5) a:focus {
  color: var(--text-white);
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .table-responsive tbody tr td:last-child div a.btn {
  padding: 0.375rem 0.675rem;
  font-size: 16px;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .table-responsive.order-info .table th,
.user-dashboard .dashboard-right-container .dashboard-right-table-top .table-responsive.order-info .table td {
  padding: 0.5rem;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .table-responsive.order-info .table tbody td .view-product-thumb {
  width: 60px !important;
  height: 60px !important;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .table-responsive.order-info .table tbody td .view-product-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .table.order-right {
  color: var(--text-color);
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .table.order-right .form-select {
  background-color: var(--bg-color);
  color: var(--text-color);
  border-color: var(--border-color);
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .table.order-right th,
.user-dashboard .dashboard-right-container .dashboard-right-table-top .table.order-right td {
  --bg-color: transparent;
  background: var(--bg-color);
  color: var(--text-color);
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .view-order {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .view-order:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .view-order:focus {
  color: var(--text-white);
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .view-order {
  padding: 8px 10px;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .print-btn button.btn {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .print-btn button.btn:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .print-btn button.btn:focus {
  color: var(--text-white);
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .print-btn button.btn {
  font-size: 16px;
  font-weight: 400;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .change-password .nav.nav-tabs {
  border-color: var(--border-color);
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .change-password .nav-link.active {
  background: transparent;
  border-width: 0 0 1px 0;
  border-color: var(--text-color);
  color: var(--text-color);
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .change-password .form-container .form-control:focus {
  border-color: var(--border-color);
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .change-password .form-container button {
  height: 45px;
  padding: 0 22px !important;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .change-password .form-container .btn-submit {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .change-password .form-container .btn-submit:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .change-password .form-container .btn-submit:focus {
  color: var(--text-white);
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .change-password .form-container .btn-submit {
  font-size: 16px;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .change-password .form-container .btn-cancel {
  display: inline-flex;
  height: 40px;
  padding: 10px 16px;
  border: 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  --bg-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-white);
  --border-radius: 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  transition: 0.4s;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .change-password .form-container .btn-cancel:hover {
  --bg-color: rgba(var(--primary-color), 0.95);
  border-color: var(--bg-color);
  transition: 0.4s;
  color: var(--text-white);
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .change-password .form-container .btn-cancel:focus {
  color: var(--text-white);
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .change-password .form-container .btn-cancel {
  background: rgb(220, 53, 69);
  border-color: rgb(220, 53, 69);
  font-size: 16px;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .active-product .pr-details-container {
  border: 1px solid var(--border-color);
  padding: 20px;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .active-product .pr-details-container .product-thumb {
  height: 180px;
  width: 100%;
  padding-top: 65%;
  position: relative;
}
.user-dashboard .dashboard-right-container .dashboard-right-table-top .active-product .pr-details-container .product-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.user-dashboard .accordion.dashboard-faq {
  background: transparent;
}
.user-dashboard .accordion.dashboard-faq .accordion-item {
  background: var(--bg-color);
  border-color: var(--border-color);
}
.user-dashboard .accordion.dashboard-faq .accordion-item .accordion-header .accordion-button {
  box-shadow: none;
  background: var(--bg-color);
  color: var(--text-color);
  font-size: 18px;
  font-weight: 500;
}
.user-dashboard .accordion.dashboard-faq .accordion-item .accordion-header .accordion-button:after {
  filter: brightness(100);
}
.user-dashboard .accordion.dashboard-faq .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: var(--bg-color);
}
.user-dashboard .accordion.dashboard-faq .accordion-item .accordion-body {
  color: var(--text-color);
  border-top: 1px solid var(--border-color);
}

table {
  color: var(--text-color);
}

.lead a {
  color: var(--text-color);
}

.text-muted {
  color: var(--clr-body) !important;
}

@media (max-width: 1200px) {
  .user-dashboard .offcanvas.user-dashboard-nav .offcanvas-body:after {
    right: auto;
    left: -24px;
  }
}
[dir=rtl] .user-dashboard .offcanvas.user-dashboard-nav .offcanvas-body:after {
  right: auto;
  transform: rotate(45deg);
  left: -23px;
}
[dir=rtl] .user-dashboard .dashboard-right-container .overview-card-container .col .dashboard-box-item {
  border-width: 0 3px 0 0;
}
@media (max-width: 1200px) {
  [dir=rtl] .user-dashboard .offcanvas.user-dashboard-nav .offcanvas-body:after {
    left: auto;
    right: -24px;
  }
}

/* ======= notificationModal =========*/
.modal.notification-modal .modal-dialog {
  max-width: 600px;
}
.modal.notification-modal .modal-header {
  border-bottom: none;
}
.modal.notification-modal .modal-body {
  color: var(--text-color);
  padding: 24px;
}
.modal.notification-modal .notification-header {
  background-color: #ff645c;
  color: white;
  border-radius: 8px 8px 0 0;
  position: relative;
}
.modal.notification-modal .notification-header .btn-close {
  background-image: none;
  font-size: 16px;
  color: var(--text-color);
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--text-white);
  position: absolute;
  right: -15px;
  top: -15px;
  cursor: pointer;
  z-index: 99;
}
.modal.notification-modal .notification-img {
  max-width: 100%;
  height: auto;
}
.modal.notification-modal .notification-text {
  font-size: 16px;
}
.modal.notification-modal .view-now-btn {
  background-color: #ff645c;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
}
.modal.notification-modal .view-now-btn:hover {
  background-color: #e7544e;
}

/* ======= notificationModal =========*/
#dynamic-modal .modal-content {
  position: relative;
  background-color: var(--white-3);
}
#dynamic-modal .modal-content .modal-header {
  border-color: var(--border-color);
}
#dynamic-modal .modal-content .modal-header button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
#dynamic-modal .modal-content .modal-header button span {
  font-size: 24px;
}
#dynamic-modal .modal-content .modal-body .pr-details-container .product-thumb {
  height: 180px;
  width: 45%;
  position: relative;
  padding-top: 45%;
}
#dynamic-modal .modal-content .modal-body .pr-details-container .product-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#dynamic-modal .modal-content .modal-body .pr-details-container ul {
  margin-left: 20px;
}
#dynamic-modal .modal-content .modal-body .pr-details-container ul li {
  list-style: disc;
}
#dynamic-modal .modal-content .modal-body .pr-details-container ol li {
  list-style: number;
}

.modal-content {
  background-color: var(--white-3) !important;
}

/* ========= Trending Collection Start =========== */
.card.collection-items {
  --bg-color: var(--white-3);
  background-color: var(--bg-color);
  transition: all 0.4s ease-in;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.card.collection-items .card-header {
  background-color: transparent;
}
.card.collection-items .card-header .img-thumb {
  position: relative;
  padding-top: 110%;
}
.card.collection-items .card-header .img-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in;
}
.card.collection-items .card-header .img-thumb span {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
}
.card.collection-items .card-header .img-thumb button {
  background-color: var(--bg-color);
  border: 0;
  color: var(--text-color);
  font-size: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  line-height: 34px;
  top: 15px;
  right: 15px;
  z-index: 1;
}
.card.collection-items .card-body {
  font-weight: 600;
}
.card.collection-items .card-body h5 a {
  color: var(--text-color);
  transition: all 0.3s ease-in;
}
.card.collection-items .card-body h5 a:hover {
  --text-color: rgba(var(--primary-color));
  color: var(--text-color);
  transition: all 0.3s ease-in;
}
.card.collection-items .card-body h3 span {
  color: rgb(255, 98, 98);
}
.card.collection-items .card-body .review .star i {
  font-size: 12px;
  color: rgb(253, 195, 68);
}
.card.collection-items .card-body .review .star i:not(:first-child) {
  margin-left: -2px;
}
.card.collection-items .card-body .review .star {
  line-height: 1;
}
.card.collection-items .card-body .review .text {
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
}
.card.collection-items:hover {
  box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in;
}
.card.collection-items:hover .card-header img {
  transform: scale(1.05) rotate(2deg);
  transition: all 0.3s ease-in;
}

/* ========== combo__packages =======*/
.combo-packages .package-banner {
  position: relative;
}
.combo-packages .package-banner .img-thumb {
  position: relative;
  padding-top: 150%;
}
.combo-packages .package-banner .img-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
}
.combo-packages .package-banner .banner-content {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
}
.combo-packages .package-banner .banner-content span {
  font-size: 14px;
}
.combo-packages .package-banner:hover .img-thumb img {
  transform: scale(1.05);
  transition: 0.4s;
}

/* =========  product-gallery-five starts =========== */
.section-header-2 .btn-1 {
  margin-bottom: 1rem;
  height: 30px;
  font-size: 14px;
  line-height: 14px;
  padding: 6px 16px;
}

.custom-section-title {
  position: relative;
  font-size: 30px;
  line-height: 30px;
  font-weight: 600;
  --text-color: rgba(var(--primary-color));
  color: var(--text-color);
  display: inline-block;
  margin-bottom: 0;
}

.custom-section-title::before {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 0px;
  width: 14px;
  height: 14px;
  --bg-color: rgba(var(--primary-color));
  background-color: var(--bg-color);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  z-index: 2;
}

.custom-section-title::after {
  content: "";
  position: absolute;
  bottom: -22px;
  right: 0px;
  width: 14px;
  height: 14px;
  --bg-color: rgba(var(--primary-color));
  background-color: var(--bg-color);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  z-index: 2;
}

.custom-section-title span::after {
  content: "";
  left: 0;
  right: 0;
  margin: auto;
  width: 95%;
  height: 2px;
  background-color: var(--bg-color);
  --bg-color: #0ea293;
  position: absolute;
  bottom: -16px;
  z-index: 1;
}

.swiper-pt {
  padding-top: 1.875rem;
}

.swiper-nav-links {
  color: var(--text-secondary);
}
.swiper-nav-links .swiper-button-prev,
.swiper-nav-links .swiper-button-next {
  width: auto;
  height: auto;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  font-family: "DM Sans";
  color: var(--text-secondary);
  margin-top: 0;
  --bg-color: transparent;
  background-color: var(--bg-color);
}
.swiper-nav-links .swiper-button-prev:after,
.swiper-nav-links .swiper-button-next:after {
  display: none;
}
.swiper-nav-links .swiper-button-prev:hover,
.swiper-nav-links .swiper-button-next:hover {
  --text-color: rgba(var(--primary-color));
  background: var(--bg-color);
  color: var(--text-color);
}

.section-header-2 {
  border-bottom: 1px solid var(--border-color);
}

.card-product {
  border: none;
  transition: 0.3s;
  background-color: var(--bg-color);
}
.card-product .card-thumb-1,
.card-product .card-thumb-2,
.card-product .card-thumb-3 {
  position: relative;
  padding-top: 110%;
  margin-bottom: 10px;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.card-product .card-thumb-1 .product-img,
.card-product .card-thumb-2 .product-img,
.card-product .card-thumb-3 .product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-product .card-thumb-2 {
  padding-top: 75%;
}
.card-product .card-thumb-3 {
  padding-top: 73%;
}
.card-product .card-body {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  padding: 16px;
  line-height: 1;
}
.card-product .card-body h6 {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.card-product .card-body h6 a {
  color: var(--text-color);
}
.card-product .card-body h6 a:hover {
  color: var(--text-color);
  --text-color: rgba(var(--primary-color));
}
.card-product .card-body p {
  margin-bottom: 0;
  color: var(--text-color);
  --text-color: rgba(var(--primary-color));
  font-size: 14px;
  font-weight: 600;
}

.card-product:hover {
  transform: translateY(-5px);
}

/* =========  product-gallery-five ends =========== */
.fixed-banner {
  position: fixed;
  background-color: var(--bg-color);
  border-radius: 10px;
  z-index: 1055;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  padding: 1rem;
  max-width: 360px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fixed-banner.show {
  opacity: 1;
  transform: translateY(0);
}
.fixed-banner.fade-out {
  opacity: 0;
  transform: translateY(20px);
}
.fixed-banner--top-left {
  top: 20px;
  left: 20px;
}
.fixed-banner--top-center {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.fixed-banner--top-right {
  top: 20px;
  right: 20px;
}
.fixed-banner--center-left {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.fixed-banner--center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fixed-banner--center-right {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.fixed-banner--bottom-left {
  bottom: 20px;
  left: 20px;
}
.fixed-banner--bottom-center {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.fixed-banner--bottom-right {
  bottom: 20px;
  right: 20px;
}
.fixed-banner--sm {
  max-width: 280px;
}
.fixed-banner--md {
  max-width: 360px;
}
.fixed-banner--lg {
  max-width: 480px;
}
.fixed-banner--xl {
  max-width: 600px;
}
.fixed-banner--full {
  width: 100%;
  left: 0;
  right: 0;
  border-radius: 0;
}
.fixed-banner__content {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.fixed-banner__actions {
  display: flex;
  gap: 0.5rem;
}
.fixed-banner__actions .btn {
  flex: 1 1 50%;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--border-radius);
}
.fixed-banner__actions .btn-outline-danger {
  border-color: #dc3545;
  color: #dc3545;
}
.fixed-banner__actions .btn-outline-danger:hover {
  background-color: #dc3545;
  color: #fff;
}
.fixed-banner__actions .btn-success {
  background-color: var(--bg-primary, #198754);
  border-color: var(--bg-primary, #198754);
}
.fixed-banner__actions .btn-success:hover {
  background-color: var(--hover-primary, #198754);
  border-color: var(--hover-primary, #198754);
}
@media (max-width: 576px) {
  .fixed-banner {
    max-width: none;
    border-radius: 8px;
    left: 10px !important;
    right: 10px !important;
  }
  .fixed-banner--top-center, .fixed-banner--bottom-center {
    left: 50% !important;
    transform: translateX(-50%);
  }
  .fixed-banner--center-left, .fixed-banner--center-right {
    top: 50%;
    transform: translateY(-50%);
  }
}

.banner-thumb-3 {
  width: 100%;
  padding-top: 35%;
  position: relative;
}

.banner-thumb-2 {
  width: 100%;
  height: 230px;
}

.ban-content {
  line-height: 1;
}
.ban-content span {
  font-size: 18px;
  font-weight: 500;
  --text-color: #111;
  color: var(--text-color);
  display: inline-block;
}
.ban-content h1 {
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 11px;
  margin: 14px 0;
  line-height: 1;
  --text-color: #111;
  color: var(--text-color);
}

@media (max-width: 991px) {
  .banner-thumb-2 {
    height: 200px;
  }
}
/* ========= Rtl Start ========== */
[dir=rtl] .preloader-container h5 {
  padding-right: 0;
  padding-left: 50px;
  border-right: 0;
  border-left: 1px solid var(--border-color);
}
@media (max-width: 576px) {
  [dir=rtl] .preloader-container h5 {
    padding-left: 20px;
  }
}
[dir=rtl] .border-end-1 {
  border-right: 0 !important;
  border-left: 1px solid !important;
  border-color: var(--border-color-1) !important;
}
[dir=rtl] .custom-dropdown {
  text-align: right;
}
[dir=rtl] .btn-1 svg {
  transform: rotate(180deg);
}
[dir=rtl] .main-header .top-bar .drop-box .dropdown {
  border-right: 0;
  border-left: 1px solid;
}
[dir=rtl] .main-header .top-bar .drop-box .dropdown .dropdown-menu li a {
  text-align: right;
}
[dir=rtl] .main-header .header-wrapper .header-container .header-nav .navbar .all-category button:after {
  right: auto;
  left: 12px;
}
[dir=rtl] .main-header .header-wrapper .header-container .header-nav .navbar .all-category .category-menu-2 {
  right: auto;
  left: 0;
}
[dir=rtl] .main-header .middle-container .middel-navbar .search-box .navbar-right .input-group input.form-control {
  padding-right: 3rem;
  padding-left: 0.75rem;
}
[dir=rtl] .main-header .middle-container .middel-navbar .search-box .navbar-right .input-group span {
  left: auto;
  right: 20px;
}
[dir=rtl] .offcanvas-header .btn-close {
  margin-left: 0;
  margin-right: auto;
}
[dir=rtl] .custom-dropdown .drop-menu li a {
  padding-right: 14px;
  padding-left: 45px;
}
[dir=rtl] .ps-left {
  left: auto;
  right: 15px;
}
[dir=rtl] .form-control {
  text-align: right;
}
[dir=rtl] .ps-right {
  right: auto;
  left: 15px;
}
[dir=rtl] .pre-top-right {
  display: flex !important;
  gap: 0.5rem !important;
  flex-direction: row-reverse !important;
  justify-content: flex-start !important;
}
[dir=rtl] .newsletter-form .btn-1 {
  margin-right: 0;
  margin-left: 5px;
}
[dir=rtl] .swiper-nav-links .swiper-button-next svg,
[dir=rtl] .swiper-nav-links .swiper-button-prev svg {
  transform: rotate(180deg);
}
[dir=rtl] .swiper-nav-links .swiper-button-next .fa-arrow-right-long:before,
[dir=rtl] .swiper-nav-links .swiper-button-next .fa-long-arrow-right:before,
[dir=rtl] .swiper-nav-links .swiper-button-prev .fa-arrow-right-long:before,
[dir=rtl] .swiper-nav-links .swiper-button-prev .fa-long-arrow-right:before {
  content: "\f177";
}
[dir=rtl] .swiper-nav-links .swiper-button-next .fa-arrow-left-long:before,
[dir=rtl] .swiper-nav-links .swiper-button-next .fa-long-arrow-left:before,
[dir=rtl] .swiper-nav-links .swiper-button-prev .fa-arrow-left-long:before,
[dir=rtl] .swiper-nav-links .swiper-button-prev .fa-long-arrow-left:before {
  content: "\f178";
}
[dir=rtl] .custom-section-title::after {
  transform: rotate(180deg);
}
[dir=rtl] .custom-section-title::before {
  transform: rotate(180deg);
}
[dir=rtl] .nav-tabs.custom-tab .nav-link.active::before {
  transform: rotate(180deg);
}
[dir=rtl] .nav-tabs.custom-tab .nav-link.active::after {
  transform: rotate(180deg);
}
[dir=rtl] .continue-shipping a {
  flex-direction: row-reverse;
  justify-content: start;
}
[dir=rtl] .indicator-bar .step:before,
[dir=rtl] .indicator-bar .step:after {
  left: auto;
  right: 50%;
}
[dir=rtl] .blog-item .blog-content h4 a i {
  transform: rotate(180deg);
}
[dir=rtl] .blog-page-container .blog-post-content .blg-btn i {
  transform: rotate(180deg);
}
[dir=rtl] .pagination .page-item .page-link i {
  transform: rotate(180deg);
}
[dir=rtl] .border-end-lg {
  border-right: 0;
  border-left: 1px solid var(--border-color);
}
[dir=rtl] .form-check .form-check-input {
  float: none;
  margin-left: 0;
}
[dir=rtl] .widget-area-start .product-category-item .product-categories li.category-accordion .accordion-item .accordion-button:after {
  margin-left: 0;
  margin-right: auto;
}
[dir=rtl] .scroll-button {
  right: auto;
  left: 15px;
}
[dir=rtl] .fixed-banner--bottom-left {
  left: auto;
  right: 20px;
}
[dir=rtl] .shop-grid-banner-item .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  padding-left: 0;
  padding-right: 0.5rem;
  transform: rotate(180deg);
}
[dir=rtl] .widget-area-start .product-category-item .product-categories li.category-accordion .accordion-item .accordion-body:before {
  left: auto;
  right: 0;
}
[dir=rtl] .theme-3-btn svg {
  transform: rotate(-90deg);
}
[dir=rtl] .theme-3-btn i {
  transform: rotate(180deg);
}
[dir=rtl] .text-btn-2 svg {
  transform: rotate(-90deg);
}
[dir=rtl] .title-1 {
  padding-left: 0;
  padding-right: 20px;
}
[dir=rtl] .title-1:before {
  content: "";
  left: auto;
  right: 6px;
}
[dir=rtl] .title-1:after {
  left: auto;
  right: 0;
}
[dir=rtl] .justify-content-start {
  justify-content: flex-end !important;
}

/* ========= Rtl Ends ========== */
/* Preloader Fullscreen Container */
.preloader-container {
  display: flex;
  height: 100%;
  width: 100%;
  background: rgba(var(--primary-color));
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: fixed;
  inset: 0;
  z-index: 9999;
  gap: 80px;
  transition: all 0.4s ease-in;
}
.preloader-container h5 {
  font-size: 30px;
  line-height: 30px;
  border-right: 1px solid var(--border-color);
  padding-right: 50px;
  color: var(--text-white);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.preloader {
  height: 25px;
  width: 25px;
  position: relative;
  animation: rotate 5s infinite;
}

.preloader-container.hidden {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.ball {
  position: absolute;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.upper {
  left: 0;
  top: -22px;
  background: #2da2ff;
  animation: upper 1s linear infinite;
}

@keyframes upper {
  50% {
    top: 22px;
  }
  100% {
    top: 22px;
  }
}
.right {
  right: -22px;
  top: 0;
  background: #ff337a;
  animation: right 1s linear infinite;
}

@keyframes right {
  50% {
    right: 22px;
  }
  100% {
    right: 22px;
  }
}
.lower {
  bottom: -22px;
  left: 0;
  background: #ffff00;
  animation: lower 1s linear infinite;
}

@keyframes lower {
  50% {
    bottom: 22px;
  }
  100% {
    bottom: 22px;
  }
}
.left {
  left: -22px;
  top: 0;
  background: #00ff00;
  animation: left 1s linear infinite;
}

@keyframes left {
  50% {
    left: 22px;
  }
  100% {
    left: 22px;
  }
}
@media (max-width: 576px) {
  .preloader-container {
    gap: 50px;
  }
  .preloader-container h5 {
    font-size: 20px;
    padding-right: 20px;
    line-height: 20px;
    letter-spacing: 2px;
  }
}
.card.seller-profile {
  background-color: transparent;
}
.card.seller-profile .cover-photo {
  position: relative;
  padding: 100px 0;
}
.card.seller-profile .cover-photo img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card.seller-profile .card-body {
  margin-top: -60px;
  position: relative;
  z-index: 1;
  background: transparent;
}
.card.seller-profile .card-body .rating {
  gap: 6px;
}

.profile-card {
  border-radius: 12px;
  background-color: var(--white-3);
  padding: 24px;
}

.profile-img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}

.camera-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #6c63ff;
  color: #fff;
  font-size: 12px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--border-color);
}

.stat-box {
  min-width: 80px;
  padding: 8px 10px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
}

.promotional-banner {
  padding: 2.5rem 1.5rem 2.5rem 2.5rem;
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.promotional-banner img {
  position: absolute;
  z-index: -1;
  left: 0;
  width: 100%;
  top: 0;
  bottom: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.promotional-banner .promotional-banner-content {
  color: #1e2533;
}
.promotional-banner .promotional-banner-content h3 {
  max-width: 184px;
}
.promotional-banner .promotional-banner-content h4 {
  color: #DC2626;
  line-height: 36px;
}
.promotional-banner .promotional-banner-content h4 span {
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: #1e2533 !important;
}

.seller-menu {
  background-color: var(--white-2);
  width: 100%;
}
.seller-menu .search-bar {
  max-width: 350px;
}
.seller-menu ul li {
  padding: 20px 24px;
}
.seller-menu ul li a,
.seller-menu ul li .active {
  color: var(--text-color);
  display: inline-block;
  position: relative;
  transition: 0.4s;
}
.seller-menu ul li a::after,
.seller-menu ul li .active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  transition: 0.4s;
  visibility: hidden;
  background-color: rgba(var(--primary-color));
  height: 2px;
}
.seller-menu ul li a:hover,
.seller-menu ul li .active:hover {
  color: rgba(var(--primary-color));
}
.seller-menu ul li a:hover:after,
.seller-menu ul li .active:hover:after {
  width: 100%;
  transition: 0.4s;
  visibility: visible;
}
.seller-menu ul li .active {
  color: rgba(var(--primary-color));
}
.seller-menu ul li .active:after {
  width: 100%;
  transition: 0.4s;
  visibility: visible;
}

.seller-hero-section .img-thumb {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  padding-top: 100%;
}
.seller-hero-section .img-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s;
}
.seller-hero-section .img-thumb:hover img {
  transform: scale(1.1);
  transition: 0.4s;
}
.seller-hero-section .img-thumb .discount-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--white-3);
  color: rgba(var(--primary-color));
  width: 120px;
  height: 120px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.seller-product-card {
  border: 1px solid var(--border-color);
}
.seller-product-card .seller-product-card-thumb {
  position: relative;
  padding-top: 89%;
}
.seller-product-card .seller-product-card-thumb.two {
  padding-top: 110%;
}
.seller-product-card .seller-product-card-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.4s;
}
.seller-product-card .card-body {
  background-color: var(--white-3);
  padding: 12px 16px;
}
.seller-product-card .card-body h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
}
.seller-product-card .card-body h6 a {
  color: var(--text-color);
}
.seller-product-card .card-body h6 a:hover {
  color: rgba(var(--primary-color));
}
.seller-product-card .card-body .price {
  font-size: 18px;
  font-weight: 500;
  color: rgba(var(--primary-color));
  line-height: 1;
}
.seller-product-card .card-body .price span {
  font-size: 14px;
  font-weight: 400;
}
.seller-product-card:hover .seller-product-card-thumb img {
  transform: scale(1.05);
  transition: transform 0.4s;
}

@media (max-width: 767px) {
  .card.seller-profile .card-body {
    margin-top: -120px;
  }
  .seller-menu ul li {
    padding-bottom: 0;
  }
}
[dir=rtl] .camera-icon {
  right: auto;
  left: 0;
}
[dir=rtl] .promotional-banner img {
  transform: rotateY(180deg);
}

/* ======== All Sass Import Ends ========= *//*# sourceMappingURL=style.css.map */