@import url(helper.css);
*,
* button:focus {
  outline: 0;
  scroll-behavior: smooth;
}

:root {
  --main-color: #447468;
  --sub-color: #7cceba;
  --grad1: linear-gradient(-90deg, var(--sub-color) 0%, var(--main-color) 100%);
  --light1: #f1f9f6;
}

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

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

.border-main {
  border-color: var(--main-color) !important;
}

.border-main-light {
  border-color: rgba(68, 116, 104, 0.2666666667) !important;
}

.bg-grad1 {
  background-image: linear-gradient(-90deg, var(--sub-color) 0%, var(--main-color) 100%);
}

.bg-grad2 {
  background-image: linear-gradient(to bottom, var(--light1) 0%, transparent);
}

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

.colorGray {
  color: #ccc;
}

.colorGray2 {
  color: #868E96;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: "Beiruti", sans-serif;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  overflow-x: hidden;
  position: relative;
  direction: rtl;
}
body .sub-font {
  font-family: "Ruwudu", serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

[type=email], [type=number], [type=tel], [type=url] {
  direction: inherit;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-main-color:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.img_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img_contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 14px;
  line-height: 1.8;
}

small.text {
  font-size: 12px;
}

.section-padding {
  padding: 100px 0;
}

.dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
  border: 0;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.0666666667);
}
.dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  text-align: center;
}

/* --------------- section-title --------------- */
.section-title {
  position: relative;
  z-index: 20;
  margin-top: 50px;
}
.section-title .sub-title {
  font-size: 25px;
  line-height: 1;
}
.section-title h2 {
  font-size: 60px;
  font-weight: bold;
  color: var(--main-color);
}
.section-title .text {
  font-size: 18px;
  color: #999;
}
.section-title .pat {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  max-height: unset;
  height: 140px;
  z-index: -1;
  opacity: 0.1;
  object-fit: contain;
}

.w-fit {
    width: fit-content ;
}
/* --------------- buttons --------------- */
button {
  background-color: transparent;
  border-width: initial;
  border-style: none;
  border-color: initial;
  -o-border-image: initial;
     border-image: initial;
  padding: 0px;
  transition: 0.3s linear;
}

.butn {
  padding: 12px 25px;
  transition: all 0.2s ease;
  position: relative;
  text-align: center;
  font-weight: 500;
  text-transform: capitalize;
  border: 0;
  font-size: 14px;
}
.butn.md-butn {
  padding: 10px 25px;
}
.butn.blur-wh-butn {
  background-color: rgba(255, 255, 255, 0.0666666667);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.butn:hover {
  box-shadow: 7px 10px 15px rgba(0, 0, 0, 0.1333333333);
  transform: translateY(-2px);
}
.butn.hvr-scale:hover {
  transform: scale(1.1);
}
.butn.hvr-txt-trans {
  position: relative;
  overflow: hidden;
}
.butn.hvr-txt-trans .txt {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}
.butn.hvr-txt-trans .txt::after {
  content: attr(data-text);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, 100%);
  transition: opacity 0.2s, transform 0.2s;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  white-space: nowrap;
}
.butn.hvr-txt-trans .txt span {
  transition: all 0.3s ease;
}
.butn.hvr-txt-trans:hover .txt span {
  transform: translateY(-150%);
  opacity: 0;
}
.butn.hvr-txt-trans:hover .txt::after {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.butn.hvr-txt-trans .icon {
  position: relative;
  top: 4px ;
}
@media screen and (max-width: 991px) {
  .butn {
    padding: 10px 20px;
  }
  .butn * {
    font-size: 13px !important;
  }
}
.toggler_butn {
  width: 100px;
  height: 45px;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: inset 0 0 20px 0px rgba(149, 149, 149, 0.14) !important;
  position: relative;
  padding: 5px;
  border: 3px solid #fff !important;
  display: flex;
  align-items: center;
}
.toggler_butn .icon_box {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #e7e7e7;
  color: #8e909c;
  transition: all 0.3s linear;
}
.toggler_butn .state_mode {
  font-size: 10px;
  color: #888b99;
  line-height: 1.3;
  font-weight: bold;
  width: 45px;
  transition: all 0.3s linear;
  transform: translateX(-4px);
}
.toggler_butn.active {
  background-color: #3C414B;
  border-color: #282b32 !important;
}
.toggler_butn.active .icon_box {
  transform: translateX(-55px);
  background-color: #22252b;
  color: #fff;
}
.toggler_butn.active .state_mode {
  transform: translateX(25px);
  color: #fff;
}

/* --------------- to_top button --------------- */
/* --------------- navbar --------------- */
.navs-container .navbar-toggler:focus {
    box-shadow: none !important ;
}
.navs-container .top_nav {
  padding: 0.5rem 1rem;
  position: relative;
}
.navs-container .top_nav .logo {
  width: 220px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}
.navs-container .top_nav .search_box {
  position: relative;
}
.navs-container .top_nav .search_box .form-control {
  border-radius: 25px;
  background-color: #fff;
  border-color: #f8f8f8;
  padding-inline-start: 45px;
  height: 55px !important;
  box-shadow: 3px 6px 15px 0 rgba(146, 136, 136, 0.07);
}
.navs-container .top_nav .search_box .submit_butn {
  color: var(--main-color);
  position: absolute;
  top: 17px;
  inset-inline-start: 15px;
}
.navs-container .top_nav .nav_butns .butn {
  border-radius: 50%;
  width: 45px;
  height: 45px;
}
.navs-container .top_nav .nav_butns .butn i {
  margin: 0;
  font-size: 16px;
}
.navs-container .navbar {
  background-color: #f9f9f9;
  padding: 0;
  z-index: 99;
  position: relative;
}
.navs-container .navbar .categs_box {
  position: relative;
}
.navs-container .navbar .categs_box .main_categ_toggler {
  font-size: 16px;
  color: var(--main-color);
}
.navs-container .navbar .categs_box .main_categ_toggler i {
  margin-inline-end: 10px;
}
.navs-container .navbar .categs_box .main_categ_box {
  position: absolute;
  top: 43px;
  opacity: 0;
  box-shadow: 3px 6px 15px 0 rgba(0, 0, 0, 0.0666666667);
  filter: blur(10px);
  visibility: hidden;
  transition: all 0.3s linear;
  z-index: 9;
}
.navs-container .navbar .categs_box .main_categ_box .item {
  position: relative;
}
.navs-container .navbar .categs_box .main_categ_box .item .main_link {
  padding: 0.8rem 1.5rem;
  font-size: 14px;
  color: #777;
  position: relative;
  min-width: 300px;
  white-space: nowrap;
  display: block;
  background-color: #fff;
}
.navs-container .navbar .categs_box .main_categ_box .item .main_link .icon {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-end: 15px;
}
.navs-container .navbar .categs_box .main_categ_box .item .main_link:hover {
  background-color: #d0e1dc;
  color: var(--main-color);
}
.navs-container .navbar .categs_box .main_categ_box .item .sub_dropdown {
  position: absolute;
  inset-inline-start: calc(100% + 10px);
  top: 0;
  background-color: #fff;
  box-shadow: -3px 6px 15px 0 rgba(104, 103, 103, 0.067);
  opacity: 0;
  filter: blur(10px);
  visibility: hidden;
  transition: all 0.3s linear;
}
.navs-container .navbar .categs_box .main_categ_box .item .sub_dropdown .sub_links {
  width: 400px;
}
.navs-container .navbar .categs_box .main_categ_box .item .sub_dropdown .sub_links .subLink {
  font-size: 13px;
  padding: 0.8rem 1rem;
  color: #999;
  background-color: #fff;
  position: relative;
}
.navs-container .navbar .categs_box .main_categ_box .item .sub_dropdown .sub_links .subLink::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin-inline-end: 10px;
}
.navs-container .navbar .categs_box .main_categ_box .item.has_dropdown .main_link::after {
  content: "\f104";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  inset-inline-end: 14px;
  top: 20px;
  font-size: 9px;
  color: #777;
}
.navs-container .navbar .categs_box .main_categ_box .item.has_dropdown:hover .sub_dropdown {
  opacity: 1;
  filter: blur(0px);
  visibility: visible;
}
.navs-container .navbar .categs_box .main_categ_box .item:hover .sub_dropdown {
  opacity: 1;
  filter: blur(0px);
  visibility: visible;
}
.navs-container .navbar .categs_box:hover .main_categ_box {
  opacity: 1;
  filter: blur(0px);
  visibility: visible;
}
.navs-container .navbar .nav-link {
  padding: 1.2rem 1.5rem;
  color: #666;
  font-size: 18px;
}
.navs-container .navbar .nav-link.active {
  font-weight: bold;
  color: var(--main-color) !important;
}
.navs-container .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  transform: rotate(45deg);
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  transform: rotate(135deg);
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--main-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--main-color);
  transition: 0.5s;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}
.navs-container .social-icons {
  position: relative;
}
.navs-container .social-icons .link,
.navs-container .social-icons .nav_butn {
  position: relative;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(68, 116, 104, 0.2);
  color: var(--main-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: 10px;
  border-radius: 50%;
}
.navs-container .social-icons .link:hover,
.navs-container .social-icons .nav_butn:hover {
  background-color: var(--main-color);
  color: #fff;
}

.navs-container .social-icons .link .num {
    width: 14px;
    height: 14px;
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--main-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    border-radius: 50%;
}

/* --------------- header --------------- */
header {
  position: relative;
  z-index: 20;
  overflow: hidden;
}
header .shap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}
header .info h1 {
  font-size: 35px;
  text-wrap: balance;
  line-height: 1.5;
}
header .info .text {
  font-size: 18px;
  color: #777;
  margin: 40px 0;
}
header .info .sub-title {
  position: relative;
  font-size: 35px;
  width: -moz-max-content;
  width: max-content;
  padding-inline-start: 100px;
  margin-bottom: 30px;
  line-height: 1;
}
header .info .sub-title::after {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  top: 75%;
  width: 80px;
  height: 3px;
  border-radius: 5px;
  background-image: linear-gradient(to right, var(--main-color), var(--sub-color));
}
header .info .sm-img {
  position: relative;
  height: 100px;
  margin: 40px 0;
}
header .info .sm-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
header .avatars-box {
  position: relative;
  background-color: #fff;
  box-shadow: 5px 5px 0 var(--sub-color), 10px 10px 0 rgba(255, 110, 0, 0.2666666667);
  border: 1px solid rgba(255, 110, 0, 0.1333333333);
  border-radius: 20px;
  padding: 20px 20px 20px 70px;
  width: -moz-max-content;
  width: max-content;
  margin-top: 30px;
  display: flex;
  align-items: center;
}
header .avatars-box .avatars {
  position: relative;
  margin-inline-end: 60px;
  flex-shrink: 0;
}
header .avatars-box .avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #fff;
  margin-inline-end: -30px;
}
header .icons {
  position: absolute;
  right: 45%;
  top: 300px;
  width: 12%;
  z-index: -1;
}
header .features-box {
  position: relative;
  padding: 50px 0 30px;
  background-color: #fff;
  background-image: var(--grad1);
  z-index: 2;
}
header .features-box .item {
  display: flex;
  align-items: center;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 40px;
  color: #fff;
}
header .features-box .item .icon {
  position: relative;
  width: 70px;
  height: 70px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.1333333333);
  border-radius: 50%;
  margin-inline-end: 20px;
  flex-shrink: 0;
}
header .features-box .item .icon img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(125deg) brightness(103%) contrast(103%);
}
header .features-box .col-lg-4:last-of-type .item {
  border: 0;
}
header .pat1 {
  position: absolute;
  inset-inline-end: 0%;
  top: 0;
  width: 60%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}
header .pat2 {
  position: absolute;
  inset-inline-end: 0%;
  top: 0;
  width: 60%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
}
header .pat2-slider {
  position: absolute;
  left: 0%;
  top: 0;
  width: 60%;
  height: 120%;
  max-height: unset;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}
header .main-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .hero-slider {
  position: relative;
}
header .hero-slider .slide-card {
  position: relative;
  height: 100%;
}
header .hero-slider .slide-card .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
header .hero-slider .info {
  position: relative;
  padding: 70px 0;
}
header .hero-slider .info h1 {
  font-size: 50px;
  text-wrap: balance;
  line-height: 1.2;
  font-weight: 600;
}
header .hero-slider .main-img {
  max-height: 400px;
}
header .hero-slider .swiper-controls-st1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  z-index: 20;
  background-color: var(--main-color);
  border: 0;
}
header .hero-slider .swiper-controls-st1 .swiper-pagination-bullet {
  background-color: #fff !important;
}
header .hero-slider .swiper-slide  {
    height: auto;
}
/* --------------- nav-pills --------------- */
.nav-pills {
  position: relative;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  margin: 20px auto;
  background-color: rgba(80, 49, 146, 0.0666666667);
  border-radius: 8px;
  overflow: hidden;
  padding: 5px;
  z-index: 10;
}
.nav-pills .nav-item {
  position: relative;
  flex-grow: 1;
}
.nav-pills .nav-item .nav-link {
  position: relative;
  background-color: transparent;
  color: var(--main-color);
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
}
.nav-pills .nav-item .nav-link.active {
  background-color: #fff;
}
.nav-pills .nav-item .nav-link .icon {
  width: 30px;
  height: 30px;
  margin-inline-end: 10px;
}

/* --------------- sections --------------- */
.sections {
  position: relative;
}
.sections .sub-sections {
  position: relative;
  padding-top: 30px;
}
.sections .sub-sections .col-lg-3:nth-of-type(2) .item {
  background-color: rgba(142, 86, 255, 0.0705882353);
}
.sections .sub-sections .col-lg-3:nth-of-type(3) .item {
  background-color: rgba(14, 205, 115, 0.0705882353);
}
.sections .sub-sections .col-lg-3:nth-of-type(4) .item {
  background-color: rgba(248, 184, 31, 0.0705882353);
}
.sections .sub-sections .col-lg-3:nth-of-type(5) .item {
  background-color: rgba(249, 37, 150, 0.0705882353);
}
.sections .sub-sections .col-lg-3:nth-of-type(6) .item {
  background-color: rgba(14, 205, 115, 0.0705882353);
}
.sections .sub-sections .col-lg-3:nth-of-type(7) .item {
  background-color: rgba(249, 37, 150, 0.0705882353);
}
.sections .sub-sections .col-lg-3:nth-of-type(8) .item {
  background-color: rgba(142, 86, 255, 0.0705882353);
}
.sections .sub-sections .col-lg-3:nth-of-type(9) .item {
  background-color: rgba(238, 74, 98, 0.0705882353);
}
.sections .sub-sections .col-lg-3:nth-of-type(10) .item {
  background-color: rgba(248, 184, 31, 0.0705882353);
}
.sections .sub-sections .item {
  position: relative;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  background-color: rgba(26, 182, 157, 0.0705882353);
  border-radius: 10px;
  margin-top: 24px;
}
.sections .sub-sections .item h5 {
  position: relative;
  font-size: 21px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.sections .sub-sections .item .icon {
  position: absolute;
  left: 15px;
  top: 50%;
  height: 80%;
  max-height: unset;
  transform: translateY(-50%);
  display: none;
}

.sections-st2 {
  position: relative;
}
.sections-st2 .cards {
  position: relative;
}
.sections-st2 .cards .col-lg-4:nth-of-type(2) .item {
  background-color: rgba(142, 86, 255, 0.0705882353);
}
.sections-st2 .cards .col-lg-4:nth-of-type(3) .item {
  background-color: rgba(14, 205, 115, 0.0705882353);
}
.sections-st2 .cards .col-lg-4:nth-of-type(4) .item {
  background-color: rgba(248, 184, 31, 0.0705882353);
}
.sections-st2 .cards .col-lg-4:nth-of-type(5) .item {
  background-color: rgba(249, 37, 150, 0.0705882353);
}
.sections-st2 .cards .col-lg-4:nth-of-type(6) .item {
  background-color: rgba(238, 74, 98, 0.0705882353);
}
.sections-st2 .cards .col-lg-4:nth-of-type(7) .item {
  background-color: rgba(14, 205, 115, 0.0705882353);
}
.sections-st2 .cards .col-lg-4:nth-of-type(8) .item {
  background-color: rgba(142, 86, 255, 0.0705882353);
}
.sections-st2 .cards .col-lg-4:nth-of-type(9) .item {
  background-color: rgba(238, 74, 98, 0.0705882353);
}
.sections-st2 .cards .col-lg-4:nth-of-type(10) .item {
  background-color: rgba(248, 184, 31, 0.0705882353);
}
.sections-st2 .cards .item {
  position: relative;
  display: block;
  padding: 50px;
  border-radius: 20px;
  background-color: rgba(26, 182, 157, 0.0705882353);
  margin-top: 24px;
  height: calc(100% - 25px);
}
.sections-st2 .cards .item .icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}
.sections-st2 .cards .item h5 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 10px;
}
.sections-st2 .cards .item .text {
  color: #777;
}

/* --------------- product card --------------- */
.product-card {
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  position: relative;
  margin-bottom: 25px;
  padding: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0666666667);
  height: calc(100% - 25px);
  
}
.product-card .img_box {
  height: 280px;
  position: relative;
  background-color: #f5f5f5;
  border-radius: 15px;
  padding: 30px;
}
.product-card .img_box img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.product-card .img_box .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 10px;
}
.product-card .img_box .fav_butn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #eee;
  color: #888;
  position: absolute;
  bottom: 10px;
  right: 10px;
  border: 1px solid #fff;
  box-shadow: 3px 3px 10px 0 rgba(167, 165, 165, 0.067);
  transform: scale(0);
  opacity: 0;
  filter: blur(10px);
}
.product-card .img_box .brand {
  position: absolute;
  top: 15px;
  right: 15px;
  height: 25px;
}
.product-card .img_box .categ {
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: inline-block;
  font-size: 14px;
  color: var(--primary);
  padding: 5px 20px;
  background-color: rgba(68, 116, 104, 0.1333333333);
  border-radius: 8px;
}
.product-card .img_box .categ.cat1 {
  background-color: #E7DFF6 ;
  color: #333;
}
.product-card .img_box .categ.cat2 {
  background-color: rgba(14, 205, 115, 0.1333333333);
}
.product-card .img_box .categ.cat3 {
  background-color: rgba(248, 184, 31, 0.1333333333);
}
.product-card .card-body {
  padding: 30px 15px 10px;
  padding-bottom: 150px ;
  position: relative;
}
.product-card .card-body .title_link {
    display: block !important ;
}
.product-card .card-body .title {
  font-size: 25px;
  font-weight: bold;
  color: #444;
  line-height: 1.3;
     white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card .card-body .ul li {
  position: relative;
  font-size: 12px;
  color: #777;
}
.product-card .card-body .ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin-inline-end: 10px;
}
.product-card .card-body .price {
    position: absolute;
    font-size: 25px;
    color: var(--primary);
    margin-top: 15px;
    font-weight: bold;
    bottom: 90px;
}
.product-card .card-body .price .prev {
  position: relative;
  color: #999;
  font-size: 20px;
}
.product-card .card-body .price .prev .sar {
  opacity: 0.4;
}
.product-card .card-body .price .prev::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #999;
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
}
.product-card .card-body .cart_butn {
  font-size: 15px;
}
.product-card .card-body .butn.hvr-txt-trans .txt {
  top: 3px;
}
.product-card:hover .img_box .fav_butn {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}
.product-card .card-body .btns  {
    position: absolute;
    bottom: 20px;
    width: 100%;
    inset-inline-start: 0;
}
.product-card .card-body .butn.hvr-txt-trans {
    padding-inline: 20px;
}
.product-card .fav-btn {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(68, 116, 104, 0.2);
  border-radius: 8px;
  margin-inline-start: 10px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(68, 116, 104, 0.3333333333);
}
.product-card .fav-btn.active {
  background-color: var(--main-color);
  color: #fff;
}

.badge {
  position: relative;
  border-radius: 25px;
  padding: 0.5rem 1rem;
  font-size: 14px;
}
.badge.badge-green {
  background-color: #19ad19;
  color: #fff;
}

/* --------------- swiper --------------- */
.swiper-controls-st1 {
  position: relative;
  background: rgba(17, 17, 17, 0.7);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.0666666667);
  height: 35px;
  width: 190px;
}
.swiper-controls-st1 .swiper-button-next,
.swiper-controls-st1 .swiper-button-prev {
  background-color: transparent !important;
  opacity: 1 !important;
  bottom: 1px !important;
  z-index: 20;
}
.swiper-controls-st1 .swiper-button-next::after,
.swiper-controls-st1 .swiper-button-prev::after {
  color: #999 !important;
  font-size: 11px !important;
}
.swiper-controls-st1 .swiper-pagination {
  bottom: 7px !important;
}
.swiper-controls-st1 .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px !important;
}
.swiper-controls-st1.dark-border-controls {
  background-color: transparent;
  border: 1px solid #bbb;
}
.swiper-controls-st1.dark-border-controls .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--main-color);
}

.swiper-notification {
  display: none;
}

/* --------------- banner-st1 --------------- */
.banner-st1 {
  position: relative;
}
.banner-st1 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.banner-st1 .bg img {
  -o-object-position: left;
     object-position: left;
}
.banner-st1 .float-info {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 50px 0;
  z-index: 10;
  color: #fff;
}
.banner-st1 .float-info h2 {
  font-size: 100px;
  font-weight: bold;
  text-shadow: 3px 3px 5px var(--main-color);
}
.banner-st1 .float-info h5 {
  font-size: 30px;
  text-shadow: 3px 3px 5px var(--main-color);
}

/* --------------- partners --------------- */
.partners {
  position: relative;
}
.partners .partners-box {
  position: relative;
  padding: 70px 50px 0;
  border-radius: 30px;
  background-image: url(../images/partner-bg.png);
  background-size: cover;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1333333333);
}
.partners .partners-box .partner {
  position: relative;
  height: 100px;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(153, 153, 153, 0.3333333333);
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners .partners-box .partner img {
  height: 45px;
  max-width: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}
.partners .swiper-controls-st1 {
  background-color: #fff;
  bottom: -17px;
}

/* --------------- testimonials --------------- */
.testimonials {
  position: relative;
  background-color: var(--light1);
  z-index: 10;
  overflow: hidden;
}
.testimonials::before {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  top: 0;
  width: calc((100vw - 1320px) / 2 + 280px);
  height: 100%;
  background-color: var(--main-color);
  z-index: -1;
}
.testimonials .avatar {
  position: relative;
  filter: drop-shadow(10px 0 0 #fff) drop-shadow(-10px 0 0 var(--main-color));
}
.testimonials .testi-slider {
  position: relative;
  overflow: hidden;
}
.testimonials .testi-card {
  background-color: #fff;
  border: 2px solid #f5f5f5;
  border-radius: 15px;
  padding: 45px 2vw;
  padding-inline-end: 5vw;
  height: 100%;
}
.testimonials .testi-card .prof_data {
  display: flex;
  align-items: center;
}
.testimonials .testi-card .prof_data .avatar {
  width: 45px;
  height: 45px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline-end: 25px;
  border-radius: 50%;
}
.testimonials .testi-card .prof_data .name {
  font-weight: bold;
  font-size: 20px;
  color: #282C32;
  margin-bottom: 0 !important;
}
.testimonials .testi-card .stars i {
  color: #ccc;
}
.testimonials .testi-card .stars i.active {
  color: #FC791A;
}
.testimonials .testi-card .txt_box {
  margin-top: 15px;
}
.testimonials .testi-card::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url(../images/icons/quote.svg) no-repeat center;
  position: absolute;
  inset-inline-end: 20px;
  bottom: 20px;
}
.testimonials .swiper-slide {
  height: auto;
}
.testimonials .bg {
  opacity: 0.09;
}

/* --------------- footer --------------- */
.footer {
  position: relative;
  padding-top: 80px;
  background-image: linear-gradient(to top, #aad4ca, #fff);
}
.footer .top-footer {
  position: relative;
  border-bottom: 1px solid rgba(153, 153, 153, 0.3333333333);
}
.footer .links {
  position: relative;
}
.footer .links a {
  position: relative;
  font-size: 16px;
  margin: 5px 0;
  display: flex;
}
.footer .links a:hover {
  color: var(--main-color);
}
.footer .branches {
  position: relative;
}
.footer .branches .item {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3333333333), transparent);
}
.footer .social-icons {
  position: relative;
}
.footer .social-icons a {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background: var(--grad1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}
.footer .foot {
  position: relative;
  padding: 20px 4vw;
  background-color: var(--main-color);
  color: #fff;
  text-align: center;
  border-radius: 30px 30px 0 0;
  margin-top: 20px;
  justify-content: space-between;
}
.footer .foot .progress-wrap {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  z-index: 99;
  transition: all 200ms linear;
  background-color: #fff;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1333333333);
}
.footer .foot .progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}
.footer .foot .progress-wrap svg path {
  fill: #f8f8f8;
}
.footer .foot .progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  box-sizing: border-box;
  display: none;
}
.footer .foot .progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------- contact_pg --------------- */
.contact_pg {
  background-image: linear-gradient(to bottom, #F1F9F6, rgba(241, 249, 246, 0.6941176471), rgba(241, 249, 246, 0.6941176471), transparent);
}
.contact_pg .branch_item {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5333333333), rgba(255, 255, 255, 0.3333333333), rgba(255, 255, 255, 0.2));
}
.contact_pg .branch_item .links li {
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}
.contact_pg .form_box {
  box-shadow: 3px 6px 15px 0 rgba(148, 146, 146, 0.067);
  margin-top: -100px;
  background-color: #fff;
  padding: 50px 3vw;
  position: relative;
  z-index: 5;
  border-radius: 25px;
}
.contact_pg .form_box .form-group {
  margin-bottom: 18px;
  position: relative;
}
.contact_pg .form_box .form-group .form-control {
  border-color: #f8f8f8;
  background-color: #f8f8f8;
  border-radius: 10px;
  padding-inline-start: 45px;
}
.contact_pg .form_box .form-group .form-control:focus {
  border-color: var(--main-color);
  box-shadow: none !important;
}
.contact_pg .form_box .form-group input, .contact_pg .form_box .form-group select {
  height: 60px !important;
}
.contact_pg .form_box .form-group textarea.form-control {
  padding-top: 18px;
  resize: none;
}
.contact_pg .form_box .form-group .icon {
  position: absolute;
  top: 20px;
  inset-inline-start: 18px;
  color: var(--primary);
}
.contact_pg .map_box {
  margin-top: 0px;
}

/* ---------------  login_pg --------------- */
.login_pg .pat2 {
    display:none ;
}
.login_pg .form_box .form-group {
  margin-bottom: 18px;
  position: relative;
}
.login_pg .form_box .form-group .form-control {
  border-color: #f8f8f8;
  background-color: #f8f8f8;
  border-radius: 10px;
  padding-inline-start: 45px;
}
.login_pg .form_box .form-group .form-control:focus {
  border-color: var(--main-color);
  box-shadow: none !important;
}
.login_pg .form_box .form-group input, .login_pg .form_box .form-group select {
  height: 60px !important;
}
.login_pg .form_box .form-group textarea.form-control {
  padding-top: 18px;
  resize: none;
}
.login_pg .form_box .form-group .icon {
  position: absolute;
  top: 20px;
  inset-inline-start: 18px;
  color: var(--primary);
}
.login_pg .form_box .form-group.show_hide_password {
  position: relative;
}
.login_pg .form_box .form-group.show_hide_password .show_pass {
  position: absolute;
  top: 23px;
  inset-inline-end: 20px;
  cursor: pointer;
  color: #888;
  z-index: 10;
}
.login_pg .form_box .form-group.phone_group .input {
  padding-left: 125px;
  text-align: left;
}
.login_pg .form_box .form-group.phone_group .input::-moz-placeholder {
  text-align: start;
}
.login_pg .form_box .form-group.phone_group .input::placeholder {
  text-align: start;
}
.login_pg .form_box .form-group.phone_group #contryCodeSelect {
  position: absolute;
  background-color: transparent;
  border: none !important;
  left: 0;
  top: 0;
  width: 120px;
}
.login_pg .form_box .form-group .code-group {
  display: flex;
  justify-content: center;
}
.login_pg .form_box .form-group .code-group .form-control {
  border: 1px solid #eee !important;
  width: 60px;
  height: 60px;
  margin: 0 5px;
  text-align: center;
  border-radius: 10px;
  font-size: 25px;
  padding: 0;
}
.login_pg .form_box .form-check-input:checked {
  background-color: var(--main-color);
  border-color: var(--main-color);
}
.login_pg header .main-img {
  padding: 40px 0;
  height: auto;
}
.login_pg header .main-img .img-contain {
  width: 95%;
  display: block;
  margin: auto;
}

.code-group {
  display: flex;
  justify-content: center;
}
.code-group .form-control {
  border: 1px solid #eee !important;
  width: 60px;
  height: 60px;
  margin: 0 5px;
  text-align: center;
  border-radius: 10px;
  font-size: 25px;
  padding: 0;
}

/* --------------- pg_header --------------- */
.pg_header {
  background-color: #F2F4F7;
  padding: 30px 0;
  position: relative;
  text-align: center;
}
.pg_header .bread {
  color: #999;
}
.pg_header .bread .item {
  margin: 0 5px;
  color: #666;
}

/* --------------- products_pg  --------------- */
.products_pg {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.products_pg .categ_box .categRow {
  height: 75px;
  overflow: hidden;
}
.products_pg .categ_box .form-check {
  position: relative;
  padding-inline-start: 0;
  overflow: hidden;
}
.products_pg .categ_box .form-check * {
    cursor: pointer;
}
.products_pg .categ_box .form-check .form-check-label {
  border: 1px solid #eee;
  border-radius: 17px;
  padding: 0.7rem 2rem;
  font-size: #000;
  margin-inline-end: 15px;
  margin: 10px;
  font-size: 22px;
}
.products_pg .categ_box .form-check .form-check-input:checked ~ .form-check-label {
  border-color: var(--main-color);
  color: var(--main-color);
}
.products_pg .categ_box .form-check .form-check-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 21px ;
  left: 0;
  bottom: 0;
  border-radius: 0;
  opacity: 0;
}
.products_pg .categ_box .more_butn {
  color: #747579;
  font-size: 24px;
  font-weight: bold;
  margin: auto;
  display: block;
  margin-top: 25px;
}
.products_pg .categ_box .more_butn i {
  margin-inline-start: 7px;
}
.products_pg .prods_top {
  background-color: #EEEEEE;
  border-radius: 12px;
  padding: 15px 25px;
}
.products_pg .prods_top .shown_p {
  font-size: 13px;
  margin-bottom: 0;
  color: #212529;
}
.products_pg .prods_top .form-group {
  display: flex;
  align-items: center;
}
.products_pg .prods_top .form-group .label {
  font-size: 13px;
  color: #868E96;
  margin-inline-end: 5px;
}
.products_pg .prods_top .form-group .form-control {
  border: none !important;
  background-color: transparent;
  font-weight: bold;
  font-size: 13px;
  color: #212529;
  box-shadow: none !important;
}
.products_pg .txt_box .title {
  color: #212529;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
}
.products_pg .txt_box .p {
  font-size: 12px;
  color: #868E96;
}
.products_pg .filter_box .title {
  color: #212529;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}
.products_pg .filter_box .form-check {
  margin-bottom: 7px;
  position: relative;
}
.products_pg .filter_box .form-check .plus_butn {
  position: absolute;
  inset-inline-end: 5px;
  top: 7px;
  font-size: 10px;
  color: #212529;
}
.products_pg .filter_box .form-check .form-check-label {
  font-size: 14px;
}
.products_pg .filter_box .form-check .form-check-input:checked {
  background-color: var(--main-color);
  border-color: var(--main-color);
  box-shadow: none !important;
}
.products_pg .filter_box .subLink {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  color: #666;
  padding-inline-start: 2.5vw;
}
.products_pg .filter_box .subLink:hover {
  color: var(--main-color);
}
.products_pg .filter_box .price_box {
  position: relative;
}
.products_pg .filter_box .price_box .price-range {
  margin-bottom: 10px;
  font-size: 14px;
  color: #212529;
}
.products_pg .filter_box .price_box .filter-btn {
  background-color: #f5f5f5;
  border: none;
  padding: 7px 20px;
  border-radius: 12px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
}
.products_pg .filter_box .price_box .filter-btn:hover {
  background-color: var(--main-color);
  color: var(--light1);
}
.products_pg .filter_box .price_box #slider {
  margin-top: 10px;
  height: 5px;
}
.products_pg .filter_box .price_box .noUi-horizontal .noUi-handle {
  background: #3b6e60;
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: -9px;
  left: 0;
}
.products_pg .filter_box .price_box .noUi-horizontal .noUi-handle::after, .products_pg .filter_box .price_box .noUi-horizontal .noUi-handle::before {
  display: none;
}
.products_pg .filter_box .price_box .noUi-connect {
  background: #3b6e60;
}
.products_pg .filter_box .price_box .noUi-target {
  border: 1px solid #ccc;
  border-radius: 5px;
}

.products_pg .products {
    background: unset !important;
}


.pagination-wrapper .page-link {
  padding: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
  font-size: 13px;
  border-radius: 50% !important;
  margin: 0 10px;
}
.pagination-wrapper .page-link:hover {
  background-color: #f5f5f5;
  color: var(--main-color) !important;
}
.pagination-wrapper .page-link.active {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}

/* ---------------  profile_pg --------------- */
.profile_pg {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.profile_pg .side_box {
  padding: 25px;
  border-radius: 25px;
  border: 1px solid #eee;
}
.profile_pg .side_box .avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto 25px auto;
  border: 3px solid #f5f5f5;
}
.profile_pg .side_box .items {
  padding-inline-start: 1vw;
}
.profile_pg .side_box .items .item {
  font-size: 20px;
  margin-bottom: 7px;
  color: #212529;
}
.profile_pg .side_box .items .item i {
  color: var(--main-color);
  margin-inline-end: 10px;
}
.profile_pg .side_box .items .item .dir_ltr {
  display: inline-block;
}
.profile_pg .side_box .butns .butn {
  width: 100%;
  background-color: #f5f5f5;
  border-radius: 15px;
  color: var(--main-color);
  font-weight: bold;
}
.profile_pg .box {
  padding: 0 3vw 50px 3vw;
  border-radius: 20px;
  border: 1px solid #eee;
}
.profile_pg .box .top_nav {
  margin-top: -25px;
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: -25px auto;
  padding: 0 1rem;
}
.profile_pg .box .top_nav .nav-link {
  color: #333;
  padding-block: 0.7rem;
  border-radius: 15px;
  margin-inline-end: 0px;
  font-size: 15px;
  font-weight: bold;
  min-width: 100px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
.profile_pg .box .top_nav .nav-link.active {
  background-color: var(--main-color);
  color: #fff !important;
}
.profile_pg .box .loc_tab .loc_card {
  border: 1px solid #eee;
  border-radius: 25px;
  margin: 0 auto 25px auto;
}
.profile_pg .box .loc_tab .loc_card .heading {
  padding: 15px;
  padding-inline-start: 25px;
  border-bottom: 1px solid #eee;
}
.profile_pg .box .loc_tab .loc_card .heading .icon-outer {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7f7f7;
  color: var(--main-color);
  border-radius: 25px;
  margin-inline-end: 15px;
}
.profile_pg .box .loc_tab .loc_card .heading .title {
  font-size: 16px;
  margin-bottom: 0;
}
.profile_pg .box .loc_tab .loc_card .heading .card_butn {
  background-color: transparent;
  margin-inline-end: 10px;
  font-size: 12px;
}
.profile_pg .box .loc_tab .loc_card .heading .card_butn.edit {
  color: rgb(58, 155, 39);
}
.profile_pg .box .loc_tab .loc_card .heading .card_butn.delete {
  color: rgb(241, 67, 67);
}
.profile_pg .box .loc_tab .loc_card .card-body {
  padding: 1.25rem 2rem;
}
.profile_pg .box .loc_tab .loc_card .card-body .icon-outer {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline-end: 25px;
  background-color: var(--main-color);
  border-radius: 10px;
  font-size: 20px;
  color: #fff;
}
.profile_pg .box .loc_tab .loc_card .card-body .content {
  width: calc(100% - 80px);
}
.profile_pg .box .loc_tab .loc_card .card-body .content .country {
  font-size: 13px;
}
.profile_pg .box .noti_tab .item {
  border: 1px solid #f5f5f5;
  padding: 25px;
  border-radius: 25px;
  display: flex;
  margin-bottom: 30px;
  position: relative;
}
.profile_pg .box .noti_tab .item:last-child {
  margin-bottom: 0 !important;
}
.profile_pg .box .noti_tab .item .icon {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #f8f8f8;
  color: var(--main-color);
  margin-inline-end: 25px;
  font-size: 30px;
}
.profile_pg .box .noti_tab .item .txt {
  width: calc(100% - 95px);
}
.profile_pg .box .noti_tab .item .txt .head p {
  color: #888;
}
.profile_pg .box .noti_tab .item .txt .head i {
  color: var(--main-color);
}
.profile_pg .box .noti_tab .item .txt .head * {
  font-size: 12px;
}
.profile_pg .box .noti_tab .item .txt .title {
  margin-top: 15px;
  font-size: 19px !important;
}
.profile_pg .box .noti_tab .item .txt .p {
  font-size: 13px;
  position: relative;
}
.profile_pg .box .noti_tab .item .txt .p .more_butn {
  background-color: #fff;
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  padding-inline-start: 10px;
  font-weight: bold;
}
.profile_pg .box .noti_tab .item.item_active {
  background-color: #f9f9f9;
}
.profile_pg .box .noti_tab .item.item_active .icon {
  background-color: #fff;
}
.profile_pg .box .noti_tab .item.item_active::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--main-color);
  position: absolute;
  top: 38px;
  inset-inline-start: 42px;
}
.profile_pg .box .orders_tab .order_card {
  border: 1px solid #eee;
  border-radius: 25px;
  margin: 0 auto 25px auto;
  position: relative;
}
.profile_pg .box .orders_tab .order_card .heading {
  padding: 20px;
  padding-inline-start: 25px;
  border-bottom: 1px solid #eee;
}
.profile_pg .box .orders_tab .order_card .heading .icon-outer {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7f7f7;
  color: var(--main-color);
  border-radius: 25px;
  margin-inline-end: 15px;
}
.profile_pg .box .orders_tab .order_card .heading .title {
  font-size: 16px;
  margin-bottom: 0;
}
.profile_pg .box .orders_tab .order_card .heading .badge {
  width: 100px;
}
.profile_pg .box .orders_tab .order_card .card-body {
  padding: 1.25rem 2vw;
  position: relative;
}
.profile_pg .box .orders_tab .order_card .card-body .data {
  margin-bottom: 10px;
}
.profile_pg .box .orders_tab .order_card .card-body .data b {
  margin-inline-end: 5px;
}
.profile_pg .box .orders_tab .order_card .card-body .data i {
  color: var(--main-color);
  margin-inline-end: 15px;
}
.profile_pg .box .orders_tab .order_card .card-body .det_butn {
  position: absolute;
  inset-inline-end: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--main-color);
  font-size: 22px;
}

.avatar-upload {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
}
.avatar-upload .avatar-edit {
  position: relative;
  padding: 8px 15px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin-inline-start: 30px;
  font-size: 12px;
  cursor: pointer;
}
.avatar-upload .avatar-edit * {
    cursor: pointer;  
}
.avatar-upload .avatar-edit input {
  display: none;
}
.avatar-upload .avatar-preview {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  border: 5px solid #f5f5f5;
}
.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


.modal .btn-close {
  filter: var(--filterPrimary);
  position: absolute;
  left: 15px;
  top: 15px;
}
.modal .modal-content {
  padding: 40px;
  border-radius: 20px;
}
.modal .modal-content .form-control {
  border-radius: 35px;
}
.modal .modal-content .butn {
  min-width: 100px;
}

.logoutModal .icon_box {
  margin: 0 auto 25px auto;
}
.logoutModal .icon_box .icon {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal-info .info_inner .data_group {
    margin-bottom: 20px;
}
.modal-info .info_inner .data_group  .label {
    font-size: 15px;
    display: block;
    margin-bottom: 10px;
}
.modal-info .info_inner .data_group .data_box {
    border-color: #f8f8f8;
    background-color: #f5f5f5 ;
    border-radius: 10px;
    padding-inline-start: 45px;
    position: relative ;
    font-size: 16px ;
    height: 60px;
    display: flex;
    align-items: center;
}
.modal-info .info_inner .data_group .data_box .icon {
    position: absolute;
    top: 18px;
    inset-inline-start: 18px;
    color: var(--main-color);
}

.dir_ltr {
  direction: ltr;
}

/* --------------- order_det_pg  --------------- */
.order_det_pg {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.order_det_pg .order_head {
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 50px;
}
.order_det_pg .order_head p {
  margin: 10px 0;
  font-size: 16px;
}
.order_det_pg .order_head p b {
  color: #666;
  margin-inline-start: 5px;
}
.order_det_pg .order_head p span {
  font-weight: bold;
  margin-right: 15px;
}
.order_det_pg .box {
  position: relative;
}
.order_det_pg .box .table thead, .order_det_pg .box .table tbody, .order_det_pg .box .table tfoot, .order_det_pg .box .table tr, .order_det_pg .box .table td, .order_det_pg .box .table th {
  border-color: unset;
  border-style: unset;
  border-width: unset;
  background-color: transparent;
}
.order_det_pg .box .table thead tr {
  border-bottom: 1px solid #ddd;
  text-align: center;
}
.order_det_pg .box .table thead tr th {
  color: #1C1C1C;
  font-size: 14px;
  padding: 1rem 1rem;
}
.order_det_pg .box .table thead tr th:nth-child(1) {
  border-radius: 0 5px 5px 0;
}
.order_det_pg .box .table thead tr th:last-child {
  border-radius: 5px 0 0 5px;
}
.order_det_pg .box .table td {
  vertical-align: middle;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  font-size: 12px;
  text-align: center;
}
.order_det_pg .box .table td .prod_data {
  padding: 0.8rem 0.1rem;
}
.order_det_pg .box .table td .prod_data .prodImg {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline-end: 15px;
  border: 1px solid #eee;
}
.order_det_pg .box .table td .prod_link {
  display: block;
  width: 100%;
}
.order_det_pg .box .table td .price .del {
  margin-inline-start: 7px;
  text-decoration: line-through;
  color: #6E7C87;
}
.order_det_pg .box .table td .rate_butn {
  text-decoration: underline;
  font-weight: bold;
  color: var(--main-color);
  font-size: 18px;
}
.order_det_pg .box .table tr:last-child td {
  border-bottom: 1px solid transparent;
}
.order_det_pg .data_box {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 50px 20px 20px 20px;
  border-radius: 5px;
}
.order_det_pg .data_box .total_box {
  text-align: center;
}
.order_det_pg .data_box .total_box h6 {
  font-size: 15px;
  color: #6E7C87;
}
.order_det_pg .data_box .total_box .price {
  color: var(--main-color);
}
.order_det_pg .data_box .prices_items .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
  color: #6E7C87;
}
.order_det_pg .data_box .prices_items .item .tax_txt {
  color: #6E7C87;
  font-size: 12px;
}
.order_det_pg .data_box .prices_items .item:last-child {
  color: #202020;
}
.order_det_pg .data_box .prices_items .item:last-child .price {
  font-weight: bold;
}
.order_det_pg .data_box .copoun_box {
  border: 1px dashed #eee;
  padding: 15px;
}
.order_det_pg .data_box .copoun_box .form-group {
  position: relative;
}
.order_det_pg .data_box .copoun_box .form-group .form-control {
  height: 50px;
  background-color: #F0F2F3;
  font-size: 12px;
  padding-inline-start: 45px;
  font-weight: bold;
}
.order_det_pg .data_box .copoun_box .form-group .icon {
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  inset-inline-start: 15px;
  top: 14px;
}
.order_det_pg .data_box .copoun_box .apply_butn {
  background-color: #6E7C87;
  border-color: #6E7C87;
  height: 50px;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
.order_det_pg .data_box .installment_box {
  padding: 15px;
  position: relative;
  border-radius: 5px;
  border: 1px solid rgba(110, 124, 135, 0.2588235294);
}
.order_det_pg .data_box .installment_box .p {
  line-height: 1.7;
  position: relative;
  z-index: 5;
  color: #6E7C87;
}
.order_det_pg .data_box .installment_box .p a {
  font-weight: bold;
  text-decoration: underline;
}
.order_det_pg .data_box .installment_box .p a, .order_det_pg .data_box .installment_box .p span, .order_det_pg .data_box .installment_box .p b {
  color: #202020;
}
.order_det_pg .data_box .installment_box .installmentLogo {
  position: relative;
  z-index: 5;
  display: block;
  margin-inline-start: auto;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}
.order_det_pg .data_box .installment_box::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;
}
.order_det_pg .data_box .installment_box.tamara::before {
  background-image: linear-gradient(to right, #FBDF8C, transparent, transparent, transparent);
}
.order_det_pg .data_box .installment_box.tabby::before {
  background-image: linear-gradient(to right, #3BFFC5, transparent, transparent, transparent);
}
.order_det_pg .data_box .qr_img {
  border-radius: 5px;
  border: 1px solid #eee;
}

.stars-content .star-rating {
  display: flex;
  flex-direction: row-reverse;
  font-size: 17px;
  justify-content: center;
  padding: 30px 15px;
  text-align: center;
  margin: auto;
}
.stars-content .star-rating i {
  margin: 0 5px;
}
.stars-content .star-rating input {
  display: none;
}
.stars-content .star-rating label {
  color: #ccc;
  cursor: pointer;
}
.stars-content .star-rating:checked ~ label {
  color: #FFD06A;
  opacity: 1;
}
.stars-content .star-rating label:hover,
.stars-content .star-rating label:hover ~ label {
  color: #FFB820;
  opacity: 1;
}
.stars-content textarea {
  padding: 20px;
}

@media print {
  .order_head {
    margin-bottom: 35px;
  }
  .prodImg {
    width: 80px;
    height: 80px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-inline-end: 15px;
  }
  .prod_name {
    font-size: 12px !important;
  }
  td {
    vertical-align: middle;
    font-size: 12px !important;
  }
  .data_box .qr_img {
    width: 150px;
    height: 150px;
    display: block;
    margin: auto;
  }
  #printButn,
  .rate_th,
  .rete_td,
  .total_box {
    display: none;
  }
}
/* --------------- prod_det_pg  --------------- */
.prod_det_pg {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.prod_det_pg .product_imgs .gallery-top {
  overflow: hidden;
  position: relative;
}
.prod_det_pg .product_imgs .gallery-top img {
  width: 100%;
  height: 510px;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}
.prod_det_pg .product_imgs .gallery-top .swiper-controls-st1 {
  position: absolute;
  bottom: 20px;
  z-index: 99;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.5019607843);
}
.prod_det_pg .product_imgs .gallery-thumbs {
  overflow: hidden;
  margin-top: 15px;
}
.prod_det_pg .product_imgs .gallery-thumbs img {
  height: 50px;
  border: 1px solid #eee;
  border-radius: 5px;
  transition: all 0.3s linear;
  opacity: 0.7;
  -o-object-fit: cover;
     object-fit: cover;
}
.prod_det_pg .product_imgs .gallery-thumbs .swiper-slide-thumb-active img {
  border-color: #2879FC;
  opacity: 1;
}
.prod_det_pg .data_box .title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.3;
}
.prod_det_pg .data_box .stars i {
  color: #ccc;
}
.prod_det_pg .data_box .stars i.active {
  color: #FFD43B;
}
.prod_det_pg .data_box .badge {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
}
.prod_det_pg .data_box .badge.alert-success {
  background-color: #E6FCF5;
  border-color: #E6FCF5;
}
.prod_det_pg .data_box .badge.alert-mainColor {
  background-color: var(--main-color);
  color: #fff;
}
.prod_det_pg .data_box .prop_box .item {
  margin-inline-end: 10px;
  color: #868E96;
}
.prod_det_pg .data_box .prop_box .item span {
  padding: 0.4rem 1.5rem;
  border-radius: 25px;
  border: 1px solid #eee;
}
.prod_det_pg .data_box .prop_box .item::before {
  content: "\f111";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  margin-inline-end: 10px;
  color: rgba(134, 142, 150, 0.3529411765);
  font-size: 4px;
}
.prod_det_pg .data_box .qty-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 0.2rem;
}
.prod_det_pg .data_box .qty-container .input-qty {
  text-align: center;
  padding: 6px 10px;
  border: 1px solid transparent !important;
  max-width: 60px;
  font-size: 22px;
  font-weight: bold;
  background-color: transparent;
}
.prod_det_pg .data_box .qty-container .qty-btn-minus,
.prod_det_pg .data_box .qty-container .qty-btn-plus {
  background-color: transparent;
  padding: 10px 13px;
  font-size: 15px;
  height: 38px;
  width: 45px;
  transition: 0.3s;
  color: #777;
}
.prod_det_pg .data_box .qty-container .qty-btn-plus {
  margin-left: -1px;
}
.prod_det_pg .data_box .qty-container .qty-btn-minus {
  margin-right: -1px;
}
.prod_det_pg .data_box .fav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(68, 116, 104, 0.2);
  border-radius: 8px;
  margin-inline-start: 10px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(68, 116, 104, 0.3333333333);
}
.prod_det_pg .data_box .fav-btn.active {
  background-color: var(--main-color);
  color: #fff;
}
.prod_det_pg .data_box .share_links .socialLink {
  margin-inline-end: 5px;
}
.prod_det_pg .data_box .share_links .socialLink .icon {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}
.prod_det_pg .data_box * {
    word-spacing: 1px;
}
.prod_det_pg .data_box .butn.hvr-txt-trans * {
    cursor: pointer;
}
.prod_det_pg .product_det_inner .nav-item {
    margin-inline-end: 5px;
}
.prod_det_pg .product_det_inner .nav-link {
    padding: 0.7rem 0;
    border-radius: 25px;
    background-color: #f8f8f8;
    margin-inline-end: 15px;
    min-width: 150px;
    text-align: center;
    justify-content: center;
    margin-inline-end: 5px !important;
    padding-inline: 5px;
}
.prod_det_pg .product_det_inner .nav-link.active {
  background-color: var(--main-color);
  color: #fff;
}
.prod_det_pg .product_det_inner .tab_wrapper {
  padding: 25px 2vw;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body {
  padding-top: 30px;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_r {
  border-left: 1px solid #D3D3D3;
  padding: 25px 2vw;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_r .stars i {
  color: #ccc;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_r .stars i.active {
  color: #2E9600;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_r .stars .num_rates {
  color: #747474;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_r .stars_progress .item .star {
  color: #012E47;
  font-size: 18px;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_r .stars_progress .item .progress {
  width: calc(100% - 80px);
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_r .stars_progress .item .progress_num {
  color: #012E47;
  font-weight: bold;
  font-size: 18px;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_r .stars_progress .item:nth-child(1) .star i {
  color: #2E9600;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_r .stars_progress .item:nth-child(1) .progress-bar {
  background-color: #2E9600;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_r .stars_progress .item:nth-child(2) .star i {
  color: #7F9E00;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_r .stars_progress .item:nth-child(2) .progress-bar {
  background-color: #7F9E00;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_r .stars_progress .item:nth-child(3) .star i {
  color: #F7AA2C;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_r .stars_progress .item:nth-child(3) .progress-bar {
  background-color: #F7AA2C;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_r .stars_progress .item:nth-child(4) .star i {
  color: #F6752F;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_r .stars_progress .item:nth-child(4) .progress-bar {
  background-color: #F6752F;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_r .stars_progress .item:nth-child(5) .star i {
  color: #f24d30;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_r .stars_progress .item:nth-child(5) .progress-bar {
  background-color: #f24d30;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_r .faq_items .p {
  font-size: 18px;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_l {
  padding: 10px 2vw 25px 2vw;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_l .head_rates_l {
  padding-bottom: 25px;
  border-bottom: 1px solid #D3D3D3;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_l .head_rates_l .form-control {
  height: 50px !important;
  background-color: transparent;
  border: 1px solid #eee;
  border-radius: 25px;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_l .review_item {
  position: relative;
  padding: 30px 2vw;
  border-radius: 0px;
  margin-bottom: 0px;
  border-bottom: 1px solid #ddd;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_l .review_item:last-child {
  border-bottom: none;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_l .review_item .prof_data .avatar {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-inline-end: 15px;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_l .review_item .prof_data .name {
  font-size: 20px;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_l .review_item .prof_data .rating i {
  font-size: 14px;
  color: #BDBDBD;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_l .review_item .prof_data .rating i.active {
  color: #DE980F;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_l .review_item .prof_data .rating .date {
  color: #7E7E7E;
  font-size: 14px;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_l .review_item .review_det {
  color: #606060;
  font-size: 17px;
  margin-bottom: 0;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_form .stars-content .star-rating {
  display: flex;
  flex-direction: row-reverse;
  font-size: 2em;
  justify-content: start;
  padding: 0 0.2em;
  text-align: center;
  margin: auto;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_form .stars-content .star-rating i {
  margin: 0 5px;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_form .stars-content .star-rating input {
  display: none;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_form .stars-content .star-rating label {
  color: #FFEEC9;
  cursor: pointer;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_form .stars-content .star-rating :checked ~ label {
  color: #FFD06A;
}
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_form .stars-content .star-rating label:hover,
.prod_det_pg .product_det_inner .rating_tab .rates_body .rates_form .stars-content .star-rating label:hover ~ label {
  color: #FFB820;
}
.prod_det_pg .product_det_inner .rating_tab .rate_butn {
  text-decoration: underline;
  display: block;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  color: #012E47;
  font-size: 14px;
}

.lineThrough {
  text-decoration: line-through;
}

.d_inline_block {
  display: inline-block;
}

/* --------------- cart_pg  --------------- */
.cart_pg {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cart_pg .alert_box {
  background-color: #eee;
  border-radius: 15px;
  position: relative;
  padding: 20px;
}
.cart_pg .alert_box .progress {
  background-color: #D9D9D9;
  border-radius: 25px;
  margin-top: 10px;
}
.cart_pg .alert_box .progress .progress-bar {
  background-color: var(--main-color);
  transition: all .3s linear;
}
.cart_pg .table thead, .cart_pg .table tbody, .cart_pg .table tfoot, .cart_pg .table tr, .cart_pg .table td, .cart_pg .table th {
  border-color: unset;
  border-style: unset;
  border-width: unset;
  background-color: transparent;
}
.cart_pg .table thead tr {
  border-bottom: 1px solid #ddd;
  text-align: center;
}
.cart_pg .table thead tr th {
  color: #868E96;
  font-size: 17px;
  padding: 1rem 1rem;
}
.cart_pg .table thead tr th:nth-child(1) {
  border-radius: 0 5px 5px 0;
}
.cart_pg .table thead tr th:last-child {
  border-radius: 5px 0 0 5px;
}
.cart_pg .table td {
  vertical-align: middle;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  font-size: 12px;
  text-align: center;
}
.cart_pg .table td .prod_data {
  padding: 0.8rem 0.1rem;
}
.cart_pg .table td .prod_data .prodImg {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline-end: 15px;
  border: 1px solid #eee;
}
.cart_pg .table td .prod_link {
  display: block;
  width: 100%;
}
.cart_pg .table td .price {
  justify-content: center;
}
.cart_pg .table td .price .del {
  margin-inline-start: 7px;
  text-decoration: line-through;
  color: #6E7C87;
}
.cart_pg .table td .rate_butn {
  text-decoration: underline;
  font-weight: bold;
  color: var(--main-color);
  font-size: 18px;
}
.cart_pg .table td .qty-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 0.2rem;
}
.cart_pg .table td .qty-container .input-qty {
    text-align: center;
    padding: 6px 10px;
    border: 1px solid transparent !important;
    min-width: 40px;
    max-width: 80px;
    font-size: 18px;
    font-weight: bold;
    background-color: transparent;
}
.cart_pg .table td .qty-container .qty-btn-minus,
.cart_pg .table td .qty-container .qty-btn-plus {
  background-color: transparent;
  padding: 10px 13px;
  font-size: 15px;
  height: 35px;
  width: 35px;
  transition: 0.3s;
  color: #777;
}
.cart_pg .table td .qty-container .qty-btn-plus {
  margin-left: -1px;
}
.cart_pg .table td .qty-container .qty-btn-minus {
  margin-right: -1px;
}
.cart_pg .table td .qty-container .fa-trash {
  color: #E60023;
}
.cart_pg .table tr:last-child td {
  border-bottom: 1px solid transparent;
}
.cart_pg .del_all_butn {
  padding-inline: 1rem;
  min-width: 100px;
  height: 60px;
  border-radius: 24px;
  background-color: #DEE2E6;
  color: #212529;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline-start: auto;
  font-weight: 500;
}
.cart_pg .del_all_butn:hover {
  background-color: #212529;
  color: #fff;
}
.cart_pg .summary_box {
  border-radius: 24px;
  border: 1px solid #CED4DA;
  padding: 20px 1.5vw;
}
.cart_pg .summary_box .copun_box {
  position: relative;
}
.cart_pg .summary_box .copun_box .form-group {
  position: relative;
  width: calc(100% - 90px);
  margin-inline-end: 10px;
}
.cart_pg .summary_box .copun_box .form-group .form-control {
  height: 50px;
  border-radius: 15px;
  box-shadow: none !important;
}
.cart_pg .summary_box .copun_box .form-group .state {
  position: absolute;
  inset-inline-end: 7px;
  top: 15px;
}
.cart_pg .summary_box .copun_box .apply_butn {
  width: 80px;
  height: 50px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 15px;
  font-weight: bold;
}
.cart_pg .summary_box .table th,
.cart_pg .summary_box .table td {
  font-size: 13px;
  text-align: center;
  vertical-align: middle;
}
.cart_pg .summary_box .table td {
  border-bottom: none;
  padding: 0.5rem;
}

/* --------------- checkout_pg  --------------- */
.checkout_pg .box .title_box .num {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  border-radius: 50%;
  margin-inline-end: 15px;
  background-color: var(--main-color);
  color: #fff;
}
.checkout_pg .box .deliveryWaysBox * {
  /*cursor: pointer;*/
}
.checkout_pg .box .deliveryWaysBox .waysChecks .form-check {
  padding-inline-start: 0;
  position: relative;
}
.checkout_pg .box .deliveryWaysBox .waysChecks .form-check .form-check-label {
  border: 1px solid #f4f4f4;
  border-radius: 15px;
  padding: 15px 25px;
  width: 100%;
  font-size: 20px;
  position: relative;
  color: #888b99;
  background-color: #f9f9f9;
  transition: all 0.3s linear;
}
.checkout_pg .box .deliveryWaysBox .waysChecks .form-check .form-check-label i {
  color: var(--main-color);
}
.checkout_pg .box .deliveryWaysBox .waysChecks .form-check .form-check-label::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin-inline-end: 15px;
  transition: all 0.3s linear;
}
.checkout_pg .box .deliveryWaysBox .waysChecks .form-check .form-check-input:checked ~ .form-check-label {
  background-color: rgba(68, 116, 104, 0.1725490196) !important;
  color: var(--main-color) !important;
  font-weight: 500;
}
.checkout_pg .box .deliveryWaysBox .waysChecks .form-check .form-check-input:checked ~ .form-check-label::before {
  background-color: var(--main-color);
}
.checkout_pg .box .deliveryWaysBox .waysChecks .form-check .form-check-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
}
.checkout_pg .box .deliveryWaysBox .branchSelected {
  border-radius: 15px;
  border: 1px solid var(--main-color);
  padding: 25px;
}
.checkout_pg .box .deliveryWaysBox .branchSelected .butn {
  word-spacing: 3px;
}
.checkout_pg .box .deliveryWaysBox .addressBox {
  position: relative;
}
.checkout_pg .box .deliveryWaysBox .addressBox .addNewLocButn {
  border-radius: 15px;
  border: 1px solid var(--main-color);
}
.checkout_pg .box .deliveryWaysBox .addressBox .form-check {
  position: relative;
}
.checkout_pg .box .deliveryWaysBox .addressBox .form-check .control_butns {
  position: absolute;
  top: 17px;
  inset-inline-end: 20px;
}
.checkout_pg .box .deliveryWaysBox .addressBox .form-check .control_butns .card_butn {
  background-color: transparent;
  margin-inline-end: 10px;
  font-size: 12px;
}
.checkout_pg .box .deliveryWaysBox .addressBox .form-check .control_butns .card_butn.edit {
  color: rgb(58, 155, 39);
}
.checkout_pg .box .deliveryWaysBox .addressBox .form-check .control_butns .card_butn.delete {
  color: rgb(241, 67, 67);
}
.checkout_pg .box .deliveryWaysBox .addressBox .form-check .form-check-label {
  width: 100%;
  transform: scale(0.99);
}
.checkout_pg .box .deliveryWaysBox .addressBox .form-check .loc_card {
  border: 1px solid #eee;
  border-radius: 25px;
  margin: 0 auto 25px auto;
}
.checkout_pg .box .deliveryWaysBox .addressBox .form-check .loc_card .heading {
  padding: 15px;
  padding-inline-start: 25px;
  border-bottom: 1px solid #eee;
}
.checkout_pg .box .deliveryWaysBox .addressBox .form-check .loc_card .heading .icon-outer {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7f7f7;
  color: var(--main-color);
  border-radius: 25px;
  margin-inline-end: 15px;
}
.checkout_pg .box .deliveryWaysBox .addressBox .form-check .loc_card .heading .title {
  font-size: 16px;
  margin-bottom: 0;
}
.checkout_pg .box .deliveryWaysBox .addressBox .form-check .loc_card .card-body {
  padding: 1.25rem 2rem;
}
.checkout_pg .box .deliveryWaysBox .addressBox .form-check .loc_card .card-body .icon-outer {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline-end: 25px;
  background-color: var(--main-color);
  border-radius: 10px;
  font-size: 20px;
  color: #fff;
}
.checkout_pg .box .deliveryWaysBox .addressBox .form-check .loc_card .card-body .content {
  width: calc(100% - 80px);
}
.checkout_pg .box .deliveryWaysBox .addressBox .form-check .loc_card .card-body .content .country {
  font-size: 13px;
}
.checkout_pg .box .deliveryWaysBox .addressBox .form-check .form-check-input:checked ~ .form-check-label .loc_card {
  border-color: var(--main-color);
  background-color: rgba(223, 231, 229, 0.1960784314);
}
.checkout_pg .box .deliveryWaysBox .addressBox .form-check .form-check-input:checked ~ .form-check-label .loc_card .heading .icon-outer {
  background-color: var(--main-color);
  color: #fff;
}
.checkout_pg .box .deliveryWaysBox .addressBox .form-check .form-check-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
}
.checkout_pg .box .deliveryWaysBox .addressBox .add_swiper {
  overflow: hidden;
}
.checkout_pg .box .deliveryWaysBox .addressBox .swiper-pagination-bullet-active {
  background: var(--main-color) !important;
}
.checkout_pg .box .payWaysBox * {
  /*cursor: pointer;*/
}
.checkout_pg .box .payWaysBox .waysChecks .form-check {
  padding-inline-start: 0;
  position: relative;
}
.checkout_pg .box .payWaysBox .waysChecks .form-check .form-check-label {
  border: 1px solid #f4f4f4;
  border-radius: 15px;
  padding: 15px 25px;
  width: 100%;
  font-size: 20px;
  position: relative;
  color: #888b99;
  background-color: #f9f9f9;
  transition: all 0.3s linear;
}
.checkout_pg .box .payWaysBox .waysChecks .form-check .form-check-label i {
  color: var(--main-color);
}
.checkout_pg .box .payWaysBox .waysChecks .form-check .form-check-label::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin-inline-end: 15px;
  transition: all 0.3s linear;
}
.checkout_pg .box .payWaysBox .waysChecks .form-check .form-check-input:checked ~ .form-check-label {
  background-color: rgba(68, 116, 104, 0.1725490196) !important;
  color: var(--main-color) !important;
  font-weight: 500;
}
.checkout_pg .box .payWaysBox .waysChecks .form-check .form-check-input:checked ~ .form-check-label::before {
  background-color: var(--main-color);
}
.checkout_pg .box .payWaysBox .waysChecks .form-check .form-check-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
}
.checkout_pg .box .checkLoginBox .code_butn {
  position: absolute;
  right: 15px;
  top: 95px;
  color: var(--main-color);
  font-weight: bold;
  text-decoration: underline;
}

.underline {
  text-decoration: underline;
}

.branchModal .form-check {
  padding-inline-start: 0;
  position: relative;
  margin-bottom: 15px;
}
.branchModal .form-check .form-check-label {
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 13px 25px;
  width: 100%;
  font-size: 20px;
  position: relative;
  color: #888b99;
  transition: all 0.3s linear;
}
.branchModal .form-check .form-check-label .title {
  color: #151719;
  margin-bottom: 4px !important;
}
.branchModal .form-check .form-check-label .p {
  font-size: 15px;
}
.branchModal .form-check .form-check-input:checked ~ .form-check-label {
  background-color: rgba(68, 116, 104, 0.1725490196);
  color: var(--main-color);
  font-weight: 500;
}
.branchModal .form-check .form-check-input:checked ~ .form-check-label .title {
  font-weight: bold;
}
.branchModal .form-check .form-check-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
}

.rateModal .stars-content .star-rating {
  display: flex;
  flex-direction: row-reverse;
  font-size: 18px ;
  justify-content: center;
  padding: 0 0.2em;
  text-align: center;
  margin: auto;
}
.rateModal .stars-content .star-rating i {
  margin: 0 5px;
}
.rateModal .stars-content .star-rating input {
  display: none;
}
.rateModal .stars-content .star-rating label {
  color: #FFEEC9;
  cursor: pointer;
}
.rateModal .stars-content .star-rating :checked ~ label {
  color: #FFD06A;
}
.rateModal .stars-content .star-rating label:hover,
.rateModal .stars-content .star-rating label:hover ~ label {
  color: #FFB820;
}

/* ---------------   --------------- */
/* ---------------   --------------- */
/* ---------------   --------------- */
/* ---------------   --------------- */
/* ---------------   --------------- */
/* ======== */
@media screen and (max-width: 991px) {
    .d_mob_none {
        display: none !important ;
    }
    .navs-container .navbar .logo {
        width: 150px;
        object-fit: contain; 
    }
    .navs-container .top_nav .social-icons {
        /*position: absolute;*/
        /*top: 28px;*/
        /*inset-inline-end: 60px;*/
        display: none !important ;
    }
    /*.navs-container .top_nav {*/
    /*    z-index: 9999;*/
    /*}*/
    .navs-container .social-icons {
        display: flex !important ;
    }
    .navs-container .social-icons .link,
    .navs-container .social-icons .nav_butn {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
  header .info h1 {
    font-size: 25px;
  }
  header .main-img {
    height: -moz-max-content;
    height: max-content;
  }
  header .features-box .item {
    padding: 20px 0;
    border: 0;
  }
  .section-title h2 {
    font-size: 30px;
  }
  .swiper-controls-st1.mt-50 {
    margin-top: 10px !important;
  }
  .banner-st1 .float-info h2 {
    line-height: 1;
  }
  .banner-st1 .img {
    margin-top: 30px;
  }
  header .hero-slider .info h1 {
    font-size: 25px;
  }
  
  .banner-st1 .float-info .butn.hvr-txt-trans {
      padding: 10px 20px !important;
  }
  
  .sections-st2 .cards .item {
    padding: 30px 15px;
  }
}
/* ======= */
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}

/**********************************************
    Start Edit dark-mode
**********************************************/
.dark-mode {
  background-color: #151719;
  color: #ffffff;
}
.dark-mode .product-card,
.dark-mode .testimonials .testi-card,
.dark-mode .footer,
.dark-mode .contact_pg .form_box,
.dark-mode .profile_pg .box .top_nav {
  background-color: #151719;
}
.dark-mode .pg_header,
.dark-mode .modal .modal-content ,
.dark-mode .product-card .img_box ,
.dark-mode .products_pg .prods_top{
  background-color: #1e2126;
}
.dark-mode .navs-container .navbar,
.dark-mode .navs-container .navbar .categs_box .main_categ_box .item .main_link,
.dark-mode .navs-container .navbar .categs_box .main_categ_box .item .sub_dropdown,
.dark-mode .navs-container .navbar .categs_box .main_categ_box .item .sub_dropdown .sub_links .subLink,
.dark-mode .bg-light1,
.dark-mode .partners .partners-box .partner,
.dark-mode .testimonials,
.dark-mode .cart_pg .alert_box,
.dark-mode .checkout_pg .box .deliveryWaysBox .waysChecks .form-check .form-check-label,
.dark-mode .checkout_pg .box .payWaysBox .waysChecks .form-check .form-check-label,
.dark-mode .order_det_pg .data_box,
.dark-mode .profile_pg .box .noti_tab .item.item_active {
  background-color: #22252b;
}
.dark-mode .title,
.dark-mode .product-card .card-body .title a,
.dark-mode .testimonials .testi-card .prof_data .name,
.dark-mode .contact_pg .branch_item h6,
.dark-mode .cart_pg .summary_box .table th,
.dark-mode .order_det_pg .box .table thead tr th,
.dark-mode .order_det_pg .data_box .prices_items .item:last-child,
.dark-mode .profile_pg .side_box .items .item,
.dark-mode .profile_pg .box .top_nav .nav-link,
.dark-mode .modal .modal-content .butn {
  color: #fff !important;
}
.dark-mode p, .dark-mode .p,
.dark-mode .navs-container .navbar .nav-link,
.dark-mode .navs-container .navbar .categs_box .main_categ_box .item .main_link,
.dark-mode .navs-container .navbar .categs_box .main_categ_box .item .sub_dropdown .sub_links .subLink,
.dark-mode .prod_sec .prod_card .card-body .ul li,
.dark-mode .cart_pg .table td,
.dark-mode .cart_pg .table td .qty-container .input-qty,
.dark-mode .products_pg .filter_box .price_box .price-range,
.dark-mode .checkout_pg .box .deliveryWaysBox .waysChecks .form-check .form-check-label,
.dark-mode .checkout_pg .box .payWaysBox .waysChecks .form-check .form-check-label,
.dark-mode .order_det_pg .box .table td,
.dark-mode .prod_det_pg .data_box .qty-container .input-qty ,
.dark-mode .products_pg .prods_top .shown_p ,
.dark-mode .products_pg .prods_top .form-group .form-control {
  color: #eee;
}
.dark-mode .testimonials .testi-card,
.dark-mode .partners .partners-box .partner,
.dark-mode .checkout_pg .box .deliveryWaysBox .waysChecks .form-check .form-check-label,
.dark-mode .checkout_pg .box .payWaysBox .waysChecks .form-check .form-check-label,
.dark-mode .order_det_pg .data_box {
  border-color: #151719;
}
.dark-mode .profile_pg .side_box,
.dark-mode .profile_pg .box,
.dark-mode .profile_pg .box .orders_tab .order_card,
.dark-mode .profile_pg .box .orders_tab .order_card .heading,
.dark-mode .profile_pg .box .loc_tab .loc_card,
.dark-mode .profile_pg .box .loc_tab .loc_card .heading,
.dark-mode .profile_pg .box .noti_tab .item {
  border-color: #292c32;
}
.dark-mode .contact_pg .form_box .form-group .form-control,
.dark-mode .login_pg .form_box .form-group .form-control,
.dark-mode .prod_det_pg .product_det_inner .rating_tab .rates_body .rates_l .head_rates_l .form-control {
  background-color: #22252b;
  border-color: #22252b;
  color: #fff;
}
.dark-mode .contact_pg .form_box .form-group .form-control::-moz-placeholder, .dark-mode .login_pg .form_box .form-group .form-control::-moz-placeholder, .dark-mode .prod_det_pg .product_det_inner .rating_tab .rates_body .rates_l .head_rates_l .form-control::-moz-placeholder {
  color: #777;
}
.dark-mode .contact_pg .form_box .form-group .form-control::placeholder,
.dark-mode .login_pg .form_box .form-group .form-control::placeholder,
.dark-mode .prod_det_pg .product_det_inner .rating_tab .rates_body .rates_l .head_rates_l .form-control::placeholder {
  color: #777;
}
.dark-mode .navs-container .top_nav .search_box .form-control {
  background-color: transparent;
  color: #fff;
  border-color: #22252b;
}
.dark-mode .navs-container .top_nav .search_box .form-control::-moz-placeholder {
  color: #999;
}
.dark-mode .navs-container .top_nav .search_box .form-control::placeholder {
  color: #999;
}
.dark-mode .footer {
  background-image: linear-gradient(to top, #21302c, #151719);
}
.dark-mode .contact_pg {
  background-image: linear-gradient(to bottom, #151719, rgba(21, 23, 25, 0.7098039216), rgba(21, 23, 25, 0.4470588235), transparent);
}
.dark-mode .products {
  background-image: linear-gradient(to bottom, #22252b, rgba(34, 37, 43, 0.6705882353), rgba(34, 37, 43, 0.4156862745), transparent);
}
.dark-mode .footer .branches .item,
.dark-mode .contact_pg .branch_item {
  background-image: linear-gradient(to bottom, rgb(37, 71, 62), transparent);
}
.dark-mode .partners .swiper-controls-st1 {
  background-color: #000;
  border-color: #101010;
}
.dark-mode .prod_det_pg .product_imgs .gallery-top .swiper-controls-st1 {
    background-color: rgb(40 44 48);
    border-color: #222020;
}

.dark-mode .login_pg .form_box .form-group.phone_group #contryCodeSelect {
    background-color: #fff9;
    color: #333;
}


/*# sourceMappingURL=style.css.map */