@import url("https://fonts.googleapis.com/css2?family=Pattaya&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  --primary-color: #26ade4;
  --secondary-color: #6c757d;
  --text-color-1: #1d1d1e;
  --text-color-2: #f8f9fa;
}

.btnGroup {
  display: flex;
  gap: 0.5rem;
}

.miniHead {
  color: var(--primary-color);
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 0.5rem;
}

.headingText {
  font-size: 16px;
  font-weight: 400;
  margin-top: -2rem;
}

.commonBtn {
  padding: 8px 16px;
  background: var(--primary-color);
  color: var(--text-color-2);
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid transparent;
}
.commonBtn:hover {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.secondaryBtn {
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  background: transparent;
  border: 2px solid var(--text-color-2);
  color: var(--text-color-2);
}
.secondaryBtn:hover {
  background: var(--primary-color);
  color: var(--text-color-2);
  border: 2px solid transparent;
}

.likeBtn {
  position: absolute;
  z-index: 1;
  background: var(--text-color-2);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  color: var(--secondary-color);
}
.likeBtn:hover {
  color: var(--primary-color);
}

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

section {
  margin: 0 0 3rem 0;
}

.commonHeading {
  font-size: 45px;
  font-weight: 600;
  color: var(--text-color-1);
  margin-bottom: 2rem;
  font-family: "Lato", sans-serif;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.commonHeading span {
  display: inline-block;
  vertical-align: bottom;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.commonHeading span::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 10px;
  background: var(--primary-color);
  height: 2px;
  transition-property: right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.commonHeading:hover span {
  color: var(--primary-color);
}
.commonHeading:hover span::before {
  right: 0;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #005c99;
  opacity: 0.5;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1.5);
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
}

.quantitySelector .qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  text-align: center;
  border-radius: 4px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s;
}
.quantitySelector .qty-btn:hover {
  background-color: #f2f2f2;
}
.quantitySelector .qty-number {
  font-size: 16px;
  font-weight: 500;
  width: 20px;
  text-align: center;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f9fbff;
  /* Hero */
  /* Problems */
  /* How */
  /* Features */
  /* CTA */
}
body .mainHeader {
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease-in-out;
  width: 100%;
}
body .mainHeader .navbar {
  height: 100px;
}
body .mainHeader .navbar .navbar-brand {
  height: 100px;
  width: 70px;
  margin-right: 0;
  padding: 0;
  margin: -8px 0;
  transition: all 0.4s ease-in-out;
}
body .mainHeader .navbar .navbar-brand img {
  -o-object-fit: fill;
     object-fit: fill;
}
body .mainHeader .navbar .navbar-toggler {
  background: var(--primary-color);
  border: 0px;
  border-radius: 5px;
  color: var(--text-color-2);
  font-size: 26px;
  height: 40px;
  width: 50px;
}
body .mainHeader .navbar #navbarCustom .navbar-nav {
  transition: all 0.3s ease-in-out;
  background: #000000;
  border-radius: 10px;
  gap: 5px;
}
body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item {
  display: flex;
  align-items: center;
}
body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  color: var(--text-color-2);
  font-weight: 500;
  padding: 10px 15px;
  position: relative;
}
body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item .nav-link .count {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--primary-color);
  height: 14px;
  width: 14px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item .nav-link .count span {
  display: block;
}
body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item .nav-link.active, body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item .nav-link:hover {
  background: var(--primary-color);
  border-radius: 10px;
}
body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item .nav-link.active .count, body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item .nav-link:hover .count {
  background: var(--text-color-2);
  color: var(--primary-color);
}
body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.searchDrop .dropdown-toggle::after {
  display: none;
}
body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.searchDrop .dropdown-menu {
  background: #000000;
}
body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.searchDrop .dropdown-menu .dropdown-item {
  background: #000000;
}
body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.searchDrop .dropdown-menu .dropdown-item .searchControl {
  padding: 7px 14px;
  border-radius: 20px;
  outline: 0;
  font-size: 14px;
  border: none;
}
body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.profileDrop .dropdown-toggle, body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.servicesDrop .dropdown-toggle {
  display: flex;
  gap: 5px;
  align-items: center;
}
body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.profileDrop .dropdown-toggle::after, body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.servicesDrop .dropdown-toggle::after {
  display: none;
}
body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.profileDrop .dropdown-toggle .profileImg, body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.servicesDrop .dropdown-toggle .profileImg {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
}
body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.profileDrop .dropdown-toggle .fLetter, body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.servicesDrop .dropdown-toggle .fLetter {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.profileDrop .dropdown-menu, body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.servicesDrop .dropdown-menu {
  background: #000000;
}
body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.profileDrop .dropdown-menu .dropdown-item, body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.servicesDrop .dropdown-menu .dropdown-item {
  background: #000000;
  color: var(--text-color-2);
  display: flex;
  gap: 10px;
}
body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.profileDrop .dropdown-menu .dropdown-item .icon, body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.servicesDrop .dropdown-menu .dropdown-item .icon {
  height: 20px;
  width: 20px;
}
body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.profileDrop .dropdown-menu .dropdown-item:hover, body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.servicesDrop .dropdown-menu .dropdown-item:hover {
  background: var(--primary-color);
  color: var(--text-color-2);
}
body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.profileDrop .dropdown-menu .dropdown-divider, body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.servicesDrop .dropdown-menu .dropdown-divider {
  border-color: var(--text-color-2);
}
body .mainHeader.stickyHeader .navbar {
  background: transparent;
}
body .mainHeader.stickyHeader .navbar .navbar-brand {
  background: var(--text-color-2);
  border-radius: 7px;
}
body .mainHeader.stickyHeader .navbar .navbar-brand img {
  -o-object-fit: fill;
     object-fit: fill;
}
body .mainHeader.stickyHeader .navbar #navbarCustom .navbar-nav {
  margin-top: -58px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}
body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide .heromaindiv {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: end;
}
body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide .heromaindiv .heroContent {
  width: 45%;
  color: var(--text-color-2);
  padding: 1rem;
}
body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide .heromaindiv .heroContent .mainheading {
  margin-bottom: 1rem;
  word-spacing: 10px;
  color: var(--primary-color);
  font-family: "Lato", sans-serif;
  font-size: 64px;
  font-weight: 700;
}
body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide .heromaindiv .heroContent .subheading {
  display: none;
}
body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide .heromaindiv .heroContent .description {
  margin-bottom: 2rem;
  display: none;
}
body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide .heromaindiv .heroContent .btnGroup .secondaryBtn {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}
body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide .heromaindiv .heroContent .btnGroup .secondaryBtn:hover {
  color: var(--text-color-2);
}
body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide .heromaindiv::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.5) 70%, rgba(255, 255, 255, 0));
  height: 100%;
  width: 50%;
  z-index: -1;
}
body .mainContent .features {
  overflow: hidden;
}
body .mainContent .features .featureDiv {
  display: flex;
  justify-content: center;
  height: 80vh;
}
body .mainContent .features .featureDiv .featureDesign {
  position: relative;
  width: 100%;
  height: 100%;
}
body .mainContent .features .featureDiv .featureDesign .center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body .mainContent .features .featureDiv .featureDesign .center .centerItem {
  width: 250px;
  height: 250px;
  background: white;
  border-radius: 50%;
  box-shadow: 9px 9px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
body .mainContent .features .featureDiv .featureDesign .center .centerItem img {
  -o-object-fit: contain;
     object-fit: contain;
}
body .mainContent .features .featureDiv .featureDesign .item {
  position: absolute;
  transform: translate(-50%, -50%);
}
body .mainContent .features .featureDiv .featureDesign .item .itemContent {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  box-shadow: 10px 10px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}
body .mainContent .features .featureDiv .featureDesign .item .itemContent .logo {
  position: relative;
  height: 100%;
  width: 100%;
}
body .mainContent .features .featureDiv .featureDesign .item .itemContent .logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
body .mainContent .features .featureDiv .featureDesign .item .itemContent .logo img:nth-child(2) {
  position: absolute;
  height: 50px;
  width: 50px;
}
body .mainContent .features .featureDiv .featureDesign .item .itemContent .featureContent {
  position: absolute;
  width: 250px;
  text-align: left;
}
body .mainContent .features .featureDiv .featureDesign .item .itemContent .featureContent .featureHead {
  font-size: 22px;
  font-weight: 600;
}
body .mainContent .features .featureDiv .featureDesign .item .itemContent .featureContent .featurepara {
  font-size: 14px;
  font-weight: 400;
}
body .mainContent .features .featureDiv .featureDesign .item.smart {
  top: 20%;
  left: 30%;
}
body .mainContent .features .featureDiv .featureDesign .item.smart .logo img:nth-child(2) {
  bottom: 0%;
}
body .mainContent .features .featureDiv .featureDesign .item.smart .featureContent {
  top: 0;
  right: 120px;
}
body .mainContent .features .featureDiv .featureDesign .item.smart .featureContent .featureHead span {
  color: #ff6100;
}
body .mainContent .features .featureDiv .featureDesign .item.rigorous {
  top: 50%;
  left: 25%;
}
body .mainContent .features .featureDiv .featureDesign .item.rigorous .logo img:nth-child(2) {
  top: 25%;
}
body .mainContent .features .featureDiv .featureDesign .item.rigorous .featureContent {
  top: 0;
  right: 120px;
}
body .mainContent .features .featureDiv .featureDesign .item.rigorous .featureContent .featureHead span {
  color: #ff0061;
}
body .mainContent .features .featureDiv .featureDesign .item.streamlined {
  bottom: 0%;
  left: 30%;
}
body .mainContent .features .featureDiv .featureDesign .item.streamlined .logo img:nth-child(2) {
  top: 0%;
}
body .mainContent .features .featureDiv .featureDesign .item.streamlined .featureContent {
  top: 0;
  right: 120px;
}
body .mainContent .features .featureDiv .featureDesign .item.streamlined .featureContent .featureHead span {
  color: #cd01de;
}
body .mainContent .features .featureDiv .featureDesign .item.customer {
  bottom: 0%;
  right: 22%;
}
body .mainContent .features .featureDiv .featureDesign .item.customer .logo img:nth-child(2) {
  left: -40%;
}
body .mainContent .features .featureDiv .featureDesign .item.customer .featureContent {
  top: 0;
  left: 120px;
}
body .mainContent .features .featureDiv .featureDesign .item.customer .featureContent .featureHead span {
  color: #2e38ff;
}
body .mainContent .features .featureDiv .featureDesign .item.high {
  top: 50%;
  right: 16%;
}
body .mainContent .features .featureDiv .featureDesign .item.high .logo img:nth-child(2) {
  left: -50%;
  top: 25%;
}
body .mainContent .features .featureDiv .featureDesign .item.high .featureContent {
  top: 0;
  left: 120px;
}
body .mainContent .features .featureDiv .featureDesign .item.high .featureContent .featureHead span {
  color: #01b9ee;
}
body .mainContent .features .featureDiv .featureDesign .item.sustainable {
  top: 20%;
  right: 21%;
}
body .mainContent .features .featureDiv .featureDesign .item.sustainable .logo img:nth-child(2) {
  left: -50%;
  bottom: 0%;
}
body .mainContent .features .featureDiv .featureDesign .item.sustainable .featureContent {
  top: 0;
  left: 120px;
}
body .mainContent .features .featureDiv .featureDesign .item.sustainable .featureContent .featureHead span {
  color: #19bd0a;
}
body .mainContent .applianceTab .customTab #appliances-tab .nav-item .nav-link {
  background: transparent;
  font-size: 22px;
  font-weight: 400;
  border-bottom: 3px solid var(--secondary-color);
  border-radius: 0;
  color: var(--secondary-color);
  text-transform: capitalize;
  padding: 0 0.4rem 0.7rem;
  display: flex;
  justify-content: center;
}
body .mainContent .applianceTab .customTab #appliances-tab .nav-item .nav-link span {
  width: -moz-max-content;
  width: max-content;
  display: block;
}
body .mainContent .applianceTab .customTab #appliances-tab .nav-item .nav-link.active, body .mainContent .applianceTab .customTab #appliances-tab .nav-item .nav-link:hover {
  border-bottom: 3px solid var(--primary-color);
  color: var(--text-color-1);
}
body .mainContent .softener-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding: 2rem 0;
  background-blend-mode: color;
  position: relative;
}
body .mainContent .softener-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
}
body .mainContent .softener-section .commonHeading,
body .mainContent .softener-section .headingText {
  position: relative;
  z-index: 1;
}
body .mainContent .softener-section .process {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
body .mainContent .softener-section .process .box_wrapper {
  width: 25%;
  align-items: center;
  display: flex;
  flex-direction: column;
}
body .mainContent .softener-section .process .box_wrapper.lastEnd {
  justify-content: end;
}
body .mainContent .softener-section .process .box_wrapper .box_1 {
  background-image: url("../images/dark_water.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 200px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color-2);
  position: relative;
}
body .mainContent .softener-section .process .box_wrapper .box_1 .ions {
  position: absolute;
  width: 100%;
  height: 100%;
}
body .mainContent .softener-section .process .box_wrapper .box_1 .ions .ion {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  animation: float 3s ease-in-out infinite;
}
body .mainContent .softener-section .process .box_wrapper .box_1 .ions .ion.ca {
  background: radial-gradient(circle, rgb(228, 208, 206) 0%, rgb(242, 104, 74) 100%);
}
body .mainContent .softener-section .process .box_wrapper .box_1 .ions .ion.mg {
  background: radial-gradient(circle, rgb(228, 208, 206) 0%, rgb(242, 104, 74) 100%);
}
body .mainContent .softener-section .process .box_wrapper .box_1 .ions .ion.na {
  background: radial-gradient(circle, rgb(207, 209, 223) 0%, rgb(139, 137, 137) 100%);
}
body .mainContent .softener-section .process .box_wrapper .box_1 .ions .ion:nth-child(1) {
  top: 20%;
  left: 10%;
}
body .mainContent .softener-section .process .box_wrapper .box_1 .ions .ion:nth-child(2) {
  top: 60%;
  left: 60%;
}
body .mainContent .softener-section .process .box_wrapper .box_1 .ions .ion:nth-child(3) {
  top: 25%;
  left: 70%;
}
body .mainContent .softener-section .process .box_wrapper .box_1 .ions .ion:nth-child(4) {
  top: 50%;
  left: 80%;
}
body .mainContent .softener-section .process .box_wrapper .box_1 .ions .ion:nth-child(5) {
  top: 15%;
  left: 40%;
}
body .mainContent .softener-section .process .box_wrapper .box_1 .ions .ion:nth-child(6) {
  top: 65%;
  left: 15%;
}
body .mainContent .softener-section .process .paradetails {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
  width: 70%;
}
body .mainContent .softener-section .process .resinDesign {
  width: 35%;
  align-items: center;
  display: flex;
  flex-direction: column;
}
body .mainContent .softener-section .process .resinDesign .productName {
  text-align: center;
  border-radius: 30px 30px 0px 0px;
  border: 2px solid var(--primary-color);
  width: 70%;
  padding: 1rem;
}
body .mainContent .softener-section .process .resinDesign .productName .head {
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
}
body .mainContent .softener-section .process .resinDesign .productName .tail {
  color: var(--secondary-color);
  font-size: 16px;
}
body .mainContent .softener-section .process .resinDesign .box_2 {
  width: 70%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0px 0px 30px 30px;
  border: 2px solid var(--primary-color);
  height: 500px;
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
}
body .mainContent .softener-section .process .resinDesign .box_2 .ions {
  height: 200px;
  width: 200px;
  justify-content: center;
  display: flex;
  align-items: center;
  position: relative;
}
body .mainContent .softener-section .process .resinDesign .box_2 .ions .ion {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  animation: float 3s ease-in-out infinite;
}
body .mainContent .softener-section .process .resinDesign .box_2 .ions .ion.resin {
  background: radial-gradient(circle, rgb(218, 189, 46) 0%, rgb(179, 107, 26) 100%);
  height: 100px;
  width: 100px;
  position: unset;
}
body .mainContent .softener-section .process .resinDesign .box_2 .ions .ion.ca {
  background: radial-gradient(circle, rgb(228, 208, 206) 0%, rgb(242, 104, 74) 100%);
}
body .mainContent .softener-section .process .resinDesign .box_2 .ions .ion.mg {
  background: radial-gradient(circle, rgb(228, 208, 206) 0%, rgb(242, 104, 74) 100%);
}
body .mainContent .softener-section .process .resinDesign .box_2 .ions .ion.na {
  background: radial-gradient(circle, rgb(207, 209, 223) 0%, rgb(139, 137, 137) 100%);
}
body .mainContent .softener-section .process .resinDesign .box_2 .ions .ion:nth-child(1) {
  top: 20%;
  left: 10%;
}
body .mainContent .softener-section .process .resinDesign .box_2 .ions .ion:nth-child(2) {
  top: 66%;
  left: 64%;
}
body .mainContent .softener-section .process .resinDesign .box_2 .ions .ion:nth-child(3) {
  top: 20%;
  left: 65%;
}
body .mainContent .softener-section .process .resinDesign .box_2 .ions .ion:nth-child(4) {
  top: 46%;
  left: 74%;
}
body .mainContent .softener-section .process .resinDesign .box_2 .ions .ion:nth-child(5) {
  top: 10%;
  left: 40%;
}
body .mainContent .softener-section .process .resinDesign .box_2 .ions .ion:nth-child(6) {
  top: 26%;
  left: 15%;
}
body .mainContent .softener-section .process .resinDesign .box_2 .ions .ion:nth-child(7) {
  top: 55%;
  left: 13%;
}
body .mainContent .softener-section .process .resinDesign .box_2 .ions .ion:nth-child(8) {
  top: 73%;
  left: 35%;
}
body .mainContent .softener-section .process .resinDesign .box_2 .ions.removed .ion.ca {
  background: radial-gradient(circle, rgb(228, 208, 206) 0%, rgb(242, 104, 74) 100%);
  filter: blur(2px);
}
body .mainContent .softener-section .process .resinDesign .box_2 .ions.removed .ion.mg {
  background: radial-gradient(circle, rgb(228, 208, 206) 0%, rgb(242, 104, 74) 100%);
  filter: blur(2px);
}
body .mainContent .softener-section .arrow {
  font-size: 2rem;
  color: #0073e6;
  animation: blink 1.5s infinite;
}
body .mainContent .warranyCard .warranyContent p,
body .mainContent .warranyCard .warranyContent ul,
body .mainContent .warranyCard .warranyContent ol,
body .mainContent .warranyCard .warranyContent table {
  font-size: 13px;
  font-weight: 300;
}
body .mainContent .warranyCard .warranyContent #warrantyAccordion .accordion-item .accordion-button {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color-1);
  box-shadow: none;
}
body .mainContent .warranyCard .warranyContent #warrantyAccordion .accordion-item .accordion-button.collapsed {
  color: var(--secondary-color);
}
body .mainContent .warranyCard .warranyContent #warrantyAccordion .accordion-item .accordion-body {
  padding: 1rem 0rem;
}
@keyframes blink {
  50% {
    opacity: 0.3;
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
body .mainContent .productCard {
  background: #e3e3e3;
  border-top-left-radius: 60px;
  overflow: hidden;
  color: var(--text-color-1);
  transition: all 0.3s ease-in-out;
  height: 600px;
}
body .mainContent .productCard .productImage {
  height: 60%;
  position: relative;
}
body .mainContent .productCard .productImage img {
  -o-object-fit: contain;
     object-fit: contain;
}
body .mainContent .productCard .productImage .viewImage {
  height: 100%;
  width: 100%;
  opacity: 1;
}
body .mainContent .productCard .productImage .hoverImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
body .mainContent .productCard .productImage .likeBtn {
  bottom: 10px;
  right: -10px;
  transform: translateX(-50%);
}
body .mainContent .productCard .productContent {
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 40%;
}
body .mainContent .productCard .productContent .productName {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  height: 45px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
body .mainContent .productCard .productContent .productName span {
  font-weight: 300;
}
body .mainContent .productCard .productContent .productDescription {
  font-size: 12px;
}
body .mainContent .productCard .productContent .productDescription p {
  margin-bottom: 0;
}
body .mainContent .productCard .productContent .productDescription ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
body .mainContent .productCard .productContent .discount {
  background: var(--text-color-1);
  color: var(--text-color-2);
  padding: 0.2rem 0.5rem;
  display: inline-flex;
  border-radius: 20px;
  font-size: 12px;
  width: -moz-fit-content;
  width: fit-content;
}
body .mainContent .productCard .productContent .price {
  font-size: 18px;
  color: var(--text-color-1);
  display: flex;
  align-items: end;
  gap: 0.5rem;
}
body .mainContent .productCard .productContent .price .salePrice {
  font-weight: 700;
}
body .mainContent .productCard .productContent .price .originalPrice {
  text-decoration: line-through;
  color: #7a7a7a;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
body .mainContent .productCard .productContent .btnGroup .commonBtn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
body .mainContent .productCard .productContent .btnGroup .commonBtn i {
  position: absolute;
  right: 16px;
}
body .mainContent .productCard:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}
body .mainContent .productCard:hover .productImage .viewImage {
  opacity: 0;
}
body .mainContent .productCard:hover .productImage .hoverImage {
  opacity: 1;
}
body .mainContent .productCard:hover .productContent .price .originalPrice {
  color: var(--primary-color);
}
body .mainContent .selling .sellingContents {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body .mainContent .selling .sellingContents .sellingHead {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}
body .mainContent .selling .sellingContents .sellingHead::after {
  content: "";
  border-bottom: 3px solid #01b9ee;
  position: absolute;
  bottom: -10px;
  left: 0px;
  width: 30%;
  border-radius: 20px;
}
body .mainContent .selling .sellingContents p {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 1rem;
}
body .mainContent .selling .sellingContents .commonBtn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}
body .mainContent .selling .sellingSwiper .swiper-wrapper .swiper-slide {
  padding: 0.5rem;
}
body .mainContent .selling .sellingSwiper .swiper-wrapper .swiper-slide .sellingCards {
  padding: 10px;
}
body .mainContent .selling .sellingSwiper .swiper-wrapper .swiper-slide .sellingCards .sellingImage {
  height: 200px;
  background: #e3e3e3;
  position: relative;
  margin-bottom: 1rem;
}
body .mainContent .selling .sellingSwiper .swiper-wrapper .swiper-slide .sellingCards .sellingImage img {
  -o-object-fit: contain;
     object-fit: contain;
}
body .mainContent .selling .sellingSwiper .swiper-wrapper .swiper-slide .sellingCards .sellingImage .discountTag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-color);
  color: var(--text-color-2);
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
}
body .mainContent .selling .sellingSwiper .swiper-wrapper .swiper-slide .sellingCards .sellingImage .likeBtn {
  height: 30px;
  width: 30px;
  font-size: 12px;
  position: absolute;
  top: 10px;
  right: -10px;
  transform: translateX(-50%);
}
body .mainContent .selling .sellingSwiper .swiper-wrapper .swiper-slide .sellingCards .sellingContent .sellingTitle {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
}
body .mainContent .selling .sellingSwiper .swiper-wrapper .swiper-slide .sellingCards .sellingContent .sellingFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .mainContent .selling .sellingSwiper .swiper-wrapper .swiper-slide .sellingCards .sellingContent .sellingFooter .price .salePrice {
  font-size: 18px;
  font-weight: 700;
}
body .mainContent .selling .sellingSwiper .swiper-wrapper .swiper-slide .sellingCards .sellingContent .sellingFooter .price .originalPrice {
  font-size: 12px;
  color: var(--secondary-color);
  text-decoration: line-through;
}
body .mainContent .selling .sellingSwiper .swiper-wrapper .swiper-slide .sellingCards .sellingContent .sellingFooter .commonBtn {
  font-size: 12px;
  padding: 2px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .mainContent .selling .sellingSwiper .swiper-wrapper .swiper-slide .sellingCards:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}
body .mainContent .selling .sellingSwiper .swiper-wrapper .swiper-slide .sellingCards:hover .sellingFooter .price .originalPrice {
  color: var(--primary-color);
}
body .mainContent .why .whyCard {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
body .mainContent .why .whyCard .whyImg {
  height: 70px;
  width: 15%;
}
body .mainContent .why .whyCard .whyImg img {
  -o-object-fit: contain;
     object-fit: contain;
}
body .mainContent .why .whyCard .whyContent {
  width: 85%;
}
body .mainContent .why .whyCard .whyContent .whyHeading {
  font-size: 24px;
  font-weight: 500;
}
body .mainContent .why .whyCard .whyContent .whyDescription {
  font-size: 12px;
  font-weight: 400;
}
body .mainContent .why .whyChooseusBG {
  background-image: url("../images/why/whychooseus.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 5rem;
  border-radius: 10px;
  margin-bottom: 3rem;
  overflow: hidden;
  border-bottom-right-radius: 60px;
}
body .mainContent .why .whyChooseusBG .whyChooseusContent .whyHeading {
  margin-bottom: 0.5rem;
  font-size: 40px;
  font-weight: 600;
}
body .mainContent .why .whyChooseusBG .whyChooseusContent .whypara {
  font-size: 20px;
  font-weight: 400;
  max-width: 600px;
}
body .mainContent .why .whyChooseusBG .whyChooseusContent .commonBtn {
  display: inline-flex;
  margin-top: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}
body .mainContent .review-container {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 2rem auto;
}
body .mainContent .review-container .review-form {
  /* Rating Stars */
}
body .mainContent .review-container .review-form .form-group {
  margin-bottom: 1.25rem;
}
body .mainContent .review-container .review-form .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}
body .mainContent .review-container .review-form .form-group input[type=text],
body .mainContent .review-container .review-form .form-group input[type=email],
body .mainContent .review-container .review-form .form-group input[type=number],
body .mainContent .review-container .review-form .form-group input[type=date],
body .mainContent .review-container .review-form .form-group select,
body .mainContent .review-container .review-form .form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
body .mainContent .review-container .review-form .form-group input[type=text]:focus,
body .mainContent .review-container .review-form .form-group input[type=email]:focus,
body .mainContent .review-container .review-form .form-group input[type=number]:focus,
body .mainContent .review-container .review-form .form-group input[type=date]:focus,
body .mainContent .review-container .review-form .form-group select:focus,
body .mainContent .review-container .review-form .form-group textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.2);
}
body .mainContent .review-container .review-form .form-group textarea {
  resize: vertical;
}
body .mainContent .review-container .review-form .rating-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .mainContent .review-container .review-form .rating-group .stars {
  display: flex;
  gap: 0.25rem;
  font-size: 1.8rem;
  cursor: pointer;
  direction: rtl;
}
body .mainContent .review-container .review-form .rating-group .stars input {
  display: none;
}
body .mainContent .review-container .review-form .rating-group .stars label {
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}
body .mainContent .review-container .review-form .rating-group .stars label:hover, body .mainContent .review-container .review-form .rating-group .stars label:hover ~ label {
  color: #f5b301;
}
body .mainContent .review-container .review-form .rating-group .stars input:checked ~ label {
  color: #f5b301;
}
body .mainContent #testimonials .customerReview .swiper-wrapper {
  padding: 1.5rem 0;
}
body .mainContent #testimonials .customerReview .swiper-wrapper .swiper-slide .testimonial-box {
  background-color: #fff;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}
body .mainContent #testimonials .customerReview .swiper-wrapper .swiper-slide .testimonial-box:hover {
  transform: translateY(-10px);
}
body .mainContent #testimonials .customerReview .swiper-wrapper .swiper-slide .testimonial-box .box-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
body .mainContent #testimonials .customerReview .swiper-wrapper .swiper-slide .testimonial-box .box-top .profile {
  display: flex;
  align-items: center;
}
body .mainContent #testimonials .customerReview .swiper-wrapper .swiper-slide .testimonial-box .box-top .profile .profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}
body .mainContent #testimonials .customerReview .swiper-wrapper .swiper-slide .testimonial-box .box-top .profile .profile-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body .mainContent #testimonials .customerReview .swiper-wrapper .swiper-slide .testimonial-box .box-top .profile .name-user strong {
  color: #252525;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}
body .mainContent #testimonials .customerReview .swiper-wrapper .swiper-slide .testimonial-box .box-top .profile .name-user span {
  color: #979797;
  font-size: 0.8rem;
}
body .mainContent #testimonials .customerReview .swiper-wrapper .swiper-slide .testimonial-box .box-top .reviews {
  color: #f9d71c;
  font-size: 1rem;
}
body .mainContent #testimonials .customerReview .swiper-wrapper .swiper-slide .testimonial-box .client-comment p {
  font-size: 0.9rem;
  color: #4b4b4b;
  line-height: 1.5;
}
body .mainContent .testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonialCard {
  color: var(--text-color-2);
  display: flex;
  gap: 10px;
  padding: 1rem;
}
body .mainContent .testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonialCard .testimonialDetails {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-color-1);
}
body .mainContent .testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonialCard .testimonialDetails .testimonialImage {
  height: 200px;
  width: 200px;
  border-radius: 10px;
  overflow: hidden;
}
body .mainContent .testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonialCard .testimonialDetails .testimonialName {
  font-size: 24px;
}
body .mainContent .testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonialCard .testimonialDetails .testimonialDesignation {
  font-size: 18px;
}
body .mainContent .testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonialCard .testimonialContent {
  display: flex;
  align-items: center;
  background-image: url("../images/testimonial/testimonialBG.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}
body .mainContent .popularCat .catCard {
  height: 300px;
  position: relative;
}
body .mainContent .popularCat .catCard .catImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
body .mainContent .popularCat .catCard .catContent {
  position: relative;
  z-index: 1;
  padding: 10px;
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to right, rgb(255, 255, 255) 80%, rgba(255, 255, 255, 0));
}
body .mainContent .popularCat .catCard .catContent .catName {
  font-size: 24px;
  font-weight: 600;
}
body .mainContent .popularCat .catCard .catContent .catDescription {
  font-size: 14px;
  margin-bottom: 1rem;
}
body .mainContent .popularCat .catCard .catContent .commonBtn {
  width: -moz-fit-content;
  width: fit-content;
}
body .mainContent .stats-section {
  margin: 5rem 0 7rem 0;
}
body .mainContent .stats-section .statsHead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
body .mainContent .stats-section .statscard {
  background-color: #fff;
  padding: 3rem 3.5rem;
  border-radius: 15px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
body .mainContent .stats-section .statscard::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 10px;
  width: 101%;
  height: 110%;
  background-image: linear-gradient(to right bottom, #4081f8, #7dd2f9);
  z-index: -1;
  border-radius: 15px;
  transform: rotate(-5deg);
  box-shadow: 0 0 45px 5px rgba(0, 0, 0, 0.2);
}
body .mainContent .stats-section .statscard .card-item {
  width: 50%;
  margin: 15px 0;
}
body .mainContent .stats-section .statscard .card-item p {
  display: flex;
}
body .mainContent .stats-section .statscard .card-item h3 {
  display: inline-block;
  font-size: 2rem;
  color: #333;
  vertical-align: top;
  margin-right: 5px;
  line-height: 1.2;
}
body .mainContent .stats-section .statscard .card-item .fa {
  font-size: 0.75rem;
}
body .mainContent .stats-section .statscard .card-item span {
  color: #9ea6a8;
  font-weight: bold;
  font-size: 0.95rem;
}
body .mainContent .stats-section .statscard .clr-up {
  color: green;
}
body .mainContent .stats-section .statscard .clr-down {
  color: red;
}
body .mainContent .exploreSection {
  background-image: url("../images/explore/exploreBG.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
body .mainContent .exploreSection .exploreContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
  gap: 1rem;
  color: var(--text-color-2);
  height: 100%;
}
body .mainContent .exploreSection .exploreContent .commonHeading {
  font-size: 32px;
  margin-bottom: 0rem;
  color: var(--text-color-2);
}
body .mainContent .exploreSection .exploreContent .exploresubHead {
  font-size: 18px;
}
body .mainContent .exploreSection .exploreContent .exploreDescription {
  font-size: 14px;
}
body .mainContent .exploreSection .exploreContent .secondaryBtn {
  width: -moz-fit-content;
  width: fit-content;
}
body .mainContent .exploreSection .exploreImage {
  height: 400px;
  width: 100%;
}
body .mainContent .blogs .blog {
  position: relative;
  height: 300px;
  display: block;
  text-decoration: none;
  color: var(--text-color-2);
  overflow: hidden;
}
body .mainContent .blogs .blog .blogImage {
  transition: all 0.3s ease-in-out;
  height: 100%;
  width: 100%;
}
body .mainContent .blogs .blog .blogContent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  padding: 1rem;
  text-align: center;
}
body .mainContent .blogs .blog .blogContent .blogTitle {
  font-size: 24px;
  font-weight: 500;
}
body .mainContent .blogs .blog:hover .blogImage {
  transform: scale(1.1);
}
body .mainContent .aboutUs {
  background-image: url("../images/about/aboutUsBG.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--text-color-2);
}
body .mainContent .aboutUs .aboutContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
body .mainContent .aboutUs .aboutContent .aboutHeading {
  font-size: 36px;
  text-transform: uppercase;
  color: var(--text-color-2);
}
body .mainContent .aboutUs .aboutContent .aboutPara {
  font-size: 14px;
}
body .mainContent .aboutUs .aboutContent .aboutList {
  font-size: 16px;
  padding-left: 20px;
}
body .mainContent .aboutUs .aboutContent .secondaryBtn {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1rem;
}
body .mainContent .aboutUs .aboutBanner {
  height: 400px;
}
body .mainContent .aboutUs .aboutBanner img {
  -o-object-fit: contain;
     object-fit: contain;
}
body .mainContent .second .solnSwiper .swiper-wrapper .swiper-slide .solnCard {
  position: relative;
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
body .mainContent .second .solnSwiper .swiper-wrapper .swiper-slide .solnCard .link {
  position: absolute;
  top: 10px;
  right: 10px;
}
body .mainContent .second .solnSwiper .swiper-wrapper .swiper-slide .solnCard .link a {
  display: flex;
  height: 40px;
  width: 40px;
  padding: 10px;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 50%;
}
body .mainContent .second .solnSwiper .swiper-wrapper .swiper-slide .solnCard .link a img {
  -o-object-fit: contain;
     object-fit: contain;
}
body .mainContent .second .solnSwiper .swiper-wrapper .swiper-slide .solnCard .cardImg {
  border-radius: 50%;
  border: 4px solid var(--primary-color);
  overflow: hidden;
  height: 200px;
  width: 200px;
}
body .mainContent .second .solnSwiper .swiper-wrapper .swiper-slide .solnCard .details .subText {
  font-size: 14px;
  text-transform: uppercase;
  color: #999999;
}
body .mainContent .second .solnSwiper .swiper-wrapper .swiper-slide .solnCard .details .mainText {
  font-size: 18px;
  font-weight: 700;
}
body .mainContent .second .solnSwiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--text-color-1);
}
body .mainContent .second .solnSwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1.5);
  background: var(--primary-color);
}
body .mainContent .quality {
  background-image: url(../images/about_us/aboutBG.jpg);
  background-size: cover;
  padding: 2.5rem 2rem 5rem;
  color: var(--text-color-2);
}
body .mainContent .quality .leftSide {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body .mainContent .quality .leftSide .tagText span {
  background: var(--text-color-2);
  color: #404a3d;
  padding: 5px 12px;
  display: inline-flex;
  border-radius: 20px;
  font-size: 14px;
}
body .mainContent .quality .leftSide .heading {
  font-size: 40px;
  font-weight: 700;
}
body .mainContent .quality .leftSide .imgDiv {
  position: relative;
}
body .mainContent .quality .leftSide .imgDiv .secondaryImg {
  height: 100px;
  width: 130px;
  background: var(--text-color-2);
  border-radius: 20px;
  padding: 10px;
  position: absolute;
  right: -30px;
  bottom: -30px;
}
body .mainContent .quality .leftSide .imgDiv .secondaryImg img {
  -o-object-fit: contain;
     object-fit: contain;
}
body .mainContent .quality .rightSide {
  padding: 2rem 1rem;
}
body .mainContent .quality .rightSide .paraText {
  font-size: 16px;
  font-weight: 400;
}
body .mainContent .quality .rightSide .policyList {
  margin-top: 2rem;
}
body .mainContent .quality .rightSide .policyList .policy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  border-bottom: 1px solid #acacac;
  margin: 1rem 0;
}
body .mainContent .quality .rightSide .policyList .policy .policyHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
body .mainContent .quality .rightSide .policyList .policy .policyHead .sno {
  color: var(--primary-color);
  font-size: 45px;
  font-weight: 500;
}
body .mainContent .quality .rightSide .policyList .policy .policyHead .policyHeading {
  width: 150px;
  font-size: 16px;
  font-weight: 600;
}
body .mainContent .quality .rightSide .policyList .policy .policyPara {
  font-size: 12px;
  width: 250px;
}
body .mainContent .quality .rightSide .policyList .policy:hover {
  background: var(--text-color-2);
  color: var(--text-color-1);
  border-radius: 10px;
}
body .mainContent .misvis .misvisImg {
  border-radius: 230px;
  overflow: hidden;
}
body .mainContent .misvis .vision .smallDiv {
  border-bottom-right-radius: 130px;
  border-top-right-radius: 130px;
}
body .mainContent .misvis .mission {
  height: 100%;
  display: flex;
  align-items: end;
}
body .mainContent .misvis .mission .smallDiv {
  border-bottom-left-radius: 130px;
  border-top-left-radius: 130px;
}
body .mainContent .misvis .smallDiv {
  background-image: url(../images/about_us/aboutBG.jpg);
  background-size: cover;
  color: var(--text-color-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 2rem;
}
body .mainContent .misvis .smallDiv .divImg {
  height: 60px;
  width: 60px;
}
body .mainContent .misvis .smallDiv .divHead {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
body .mainContent .misvis .smallDiv .divPara {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}
body .mainContent .tagStrip {
  background: linear-gradient(90deg, rgb(57, 112, 200) 0%, rgb(133, 197, 254) 100%);
  color: var(--text-color-2);
}
body .mainContent .tagStrip .stripDetail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5rem 0;
}
body .mainContent .tagStrip .stripDetail .points {
  display: flex;
  gap: 26px;
  margin-bottom: 0;
  text-transform: uppercase;
  padding-left: 0px;
  font-size: 12px;
}
body .mainContent .tagStrip .stripDetail .points li:nth-child(1) {
  list-style: none;
}
body .mainContent .tagStrip .stripDetail .contactDetails {
  display: flex;
  gap: 30px;
}
body .mainContent .tagStrip .stripDetail .contactDetails .contactDetail {
  display: flex;
  gap: 10px;
  align-items: center;
}
body .mainContent .tagStrip .stripDetail .contactDetails .contactDetail .icon {
  font-size: 20px;
  height: 50px;
  width: 50px;
  color: var(--primary-color);
  background: var(--text-color-2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
body .mainContent .banner {
  background: url(../images/about_us/aboutBG.jpg);
  background-size: cover;
  background-position: center;
  height: 50vh;
}
body .mainContent .banner .breadcrumbPointer {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color-2);
  gap: 30px;
}
body .mainContent .banner .breadcrumbPointer .pointer {
  display: flex;
  align-items: center;
  gap: 30px;
}
body .mainContent .banner .breadcrumbPointer .pointer .sno {
  background: var(--text-color-2);
  color: var(--text-color-1);
  font-size: 18px;
  font-weight: 600;
  height: 40px;
  width: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .mainContent .banner .breadcrumbPointer .pointer .tag {
  font-weight: 700;
  font-size: 20px;
}
body .mainContent .banner .breadcrumbPointer .pointer.active .sno {
  background: var(--primary-color);
  color: var(--text-color-2);
}
body .mainContent .banner .invoHeading {
  height: 100%;
  color: var(--text-color-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
body .mainContent .banner .invoHeading .mainHead {
  font-size: 50px;
  text-transform: capitalize;
}
body .mainContent .products {
  background: #f4f5f8;
  padding: 25px 0;
}
body .mainContent .products .shopSidebar {
  padding: 20px;
  border-radius: 12px;
  background: #f4f5f8;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
body .mainContent .products .shopSidebar .filterSection {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
body .mainContent .products .shopSidebar .filterSection h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #111;
}
body .mainContent .products .shopSidebar .filterSection:last-child {
  border-bottom: none;
}
body .mainContent .products .shopSidebar .priceSlider {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body .mainContent .products .shopSidebar .priceSlider input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
  border-radius: 3px;
  position: relative;
}
body .mainContent .products .shopSidebar .priceSlider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 16px;
  width: 5px;
  background: var(--primary-color);
  border-radius: 2px;
  cursor: pointer;
  margin-top: -6px;
}
body .mainContent .products .shopSidebar .priceSlider input[type=range]::-moz-range-thumb {
  height: 16px;
  width: 5px;
  background: var(--primary-color);
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
body .mainContent .products .shopSidebar .priceSlider input[type=range]::-ms-thumb {
  height: 16px;
  width: 5px;
  background: var(--primary-color);
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
body .mainContent .products .shopSidebar .priceSlider input[type=range]::-webkit-slider-runnable-track {
  background: var(--primary-color);
  height: 5px;
  border-radius: 3px;
}
body .mainContent .products .shopSidebar .priceSlider input[type=range]::-moz-range-track {
  background: var(--primary-color);
  height: 5px;
  border-radius: 3px;
}
body .mainContent .products .shopSidebar .priceSlider input[type=range]::-ms-track {
  background: transparent;
  border-color: transparent;
  color: transparent;
  height: 5px;
}
body .mainContent .products .shopSidebar .priceSlider .priceRange {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .mainContent .products .shopSidebar .priceSlider .priceRange span {
  font-size: 16px;
  color: #000;
  font-weight: 600;
}
body .mainContent .products .shopSidebar .priceSlider .priceRange button {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 500;
}
body .mainContent .products .shopSidebar .priceSlider .priceRange button:hover {
  background: var(--primary-color);
  color: #fff;
  transition: 0.2s;
}
body .mainContent .products .shopSidebar .categoryList {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
body .mainContent .products .shopSidebar .categoryList li a {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: #555;
  cursor: pointer;
  text-decoration: none;
}
body .mainContent .products .shopSidebar .categoryList li a span {
  background: #eee;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 12px;
}
body .mainContent .products .shopSidebar .categoryList li a:hover {
  color: var(--primary-color);
}
body .mainContent .products .shopSidebar .checkboxGroup {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body .mainContent .products .shopSidebar .checkboxGroup label {
  font-size: 14px;
  color: #555;
}
body .mainContent .products .shopSidebar .checkboxGroup label input {
  margin-right: 8px;
}
body .mainContent .products .shopSidebar .topProduct {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  align-items: center;
}
body .mainContent .products .shopSidebar .topProduct img {
  width: 50px;
  height: auto;
  border-radius: 6px;
}
body .mainContent .products .shopSidebar .topProduct .productInfo p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  color: #111;
}
body .mainContent .products .shopSidebar .topProduct .productInfo .star-rating {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  color: var(--secondary-color);
  font-size: 10px;
}
body .mainContent .products .shopSidebar .topProduct .productInfo .star-rating::before {
  content: "\f005\f005\f005\f005\f005";
  font-weight: 400;
}
body .mainContent .products .shopSidebar .topProduct .productInfo .star-rating span {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  color: var(--primary-color);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
body .mainContent .products .shopSidebar .topProduct .productInfo .star-rating span::before {
  content: "\f005\f005\f005\f005\f005";
}
body .mainContent .products .shopSidebar .topProduct .productInfo .price {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
}
body .mainContent .products .breadcrumdSearch {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0 25px 0;
  gap: 20px;
  flex-wrap: wrap;
}
body .mainContent .products .breadcrumdSearch .breadcrumd ul {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
body .mainContent .products .breadcrumdSearch .breadcrumd ul li {
  font-size: 14px;
  color: #555;
}
body .mainContent .products .breadcrumdSearch .breadcrumd ul li:last-child {
  font-weight: 600;
  color: #000;
}
body .mainContent .products .breadcrumdSearch .breadcrumd ul li:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: #ccc;
}
body .mainContent .products .breadcrumdSearch .breadcrumd ul li a {
  color: #777;
  text-decoration: none;
}
body .mainContent .products .breadcrumdSearch .breadcrumd ul li a:hover {
  color: var(--primary-color);
}
body .mainContent .products .breadcrumdSearch .search {
  display: flex;
  align-items: center;
  padding: 21px 16px;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  width: 100%;
  max-width: 300px;
}
body .mainContent .products .breadcrumdSearch .search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #333;
  flex: 1;
}
body .mainContent .products .breadcrumdSearch .search button {
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
}
body .mainContent .products .breadcrumdSearch .search button i {
  font-size: 16px;
}
body .mainContent .products .breadcrumdSearch .search button:hover {
  color: var(--primary-color);
}
body .mainContent .products .product {
  background: var(--primary-color);
  padding-top: 1.5rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
  overflow: hidden;
}
body .mainContent .products .product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10%;
  background: linear-gradient(135deg, var(--primary-color) 50%, var(--text-color-1) 50%);
  z-index: 0;
}
body .mainContent .products .product .productWrapper {
  background: var(--text-color-2);
  border-top-left-radius: 40px 20px;
  border-top-right-radius: 40px 20px;
  position: relative;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body .mainContent .products .product .productWrapper .productDetails {
  z-index: 2;
  text-decoration: none;
  color: var(--text-color-1);
}
body .mainContent .products .product .productWrapper .productDetails .productName {
  text-align: center;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 500;
  height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
body .mainContent .products .product .productWrapper .productDetails .productName span {
  font-weight: 300;
}
body .mainContent .products .product .productWrapper .productDetails .productDesc {
  text-align: center;
  font-size: 10px;
  height: 60px;
  margin-bottom: 10px;
}
body .mainContent .products .product .productWrapper .productDetails .productDesc ul {
  padding-left: 0;
  list-style: none;
}
body .mainContent .products .product .productWrapper .productImage {
  height: 250px;
  position: relative;
}
body .mainContent .products .product .productWrapper .productImage img {
  -o-object-fit: contain;
     object-fit: contain;
}
body .mainContent .products .product .productWrapper .productImage .viewImage {
  height: 100%;
  width: 100%;
  opacity: 1;
}
body .mainContent .products .product .productWrapper .productImage .hoverImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
body .mainContent .products .product .productWrapper .productImage .likeBtn {
  top: 10px;
  right: -10px;
  transform: translateX(-50%);
}
body .mainContent .products .product .productWrapper .priceRate {
  display: flex;
  justify-content: space-between;
  align-items: left;
  flex-direction: column;
}
body .mainContent .products .product .productWrapper .priceRate .price {
  display: flex;
  gap: 5px;
  align-items: center;
  font-weight: 700;
}
body .mainContent .products .product .productWrapper .priceRate .price .salePrice {
  font-size: 16px;
}
body .mainContent .products .product .productWrapper .priceRate .price .originalPrice {
  font-size: 13px;
  text-decoration: line-through;
  color: var(--secondary-color);
}
body .mainContent .products .product .productWrapper .priceRate .star-rating {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  color: var(--secondary-color);
  font-size: 10px;
}
body .mainContent .products .product .productWrapper .priceRate .star-rating::before {
  content: "\f005\f005\f005\f005\f005";
  font-weight: 400;
}
body .mainContent .products .product .productWrapper .priceRate .star-rating span {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  color: var(--primary-color);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
body .mainContent .products .product .productWrapper .priceRate .star-rating span::before {
  content: "\f005\f005\f005\f005\f005";
}
body .mainContent .products .product .productWrapper .productExtras {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .mainContent .products .product .productWrapper .productExtras .viewBtn i {
  font-size: 16px;
  border-radius: 4px;
  color: #000;
  transition: 0.2s;
  cursor: pointer;
}
body .mainContent .products .product .productWrapper .productExtras .viewBtn i:hover {
  background-color: #f2f2f2;
}
body .mainContent .products .product .productWrapper .btnGroup {
  margin: 10px -10px -10px -10px;
}
body .mainContent .products .product .productWrapper .btnGroup .commonBtn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
body .mainContent .products .product .productWrapper .btnGroup .commonBtn i {
  position: absolute;
  right: 16px;
}
body .mainContent .products .product:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}
body .mainContent .products .product:hover .productWrapper .productImage .viewImage {
  opacity: 0;
}
body .mainContent .products .product:hover .productWrapper .productImage .hoverImage {
  opacity: 1;
}
body .mainContent .products .product:hover .productWrapper .priceRate .price .originalPrice {
  color: var(--primary-color);
}
body .mainContent .products .paginationWrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
body .mainContent .products .paginationWrapper .custom-pagination {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0;
  margin: 0;
}
body .mainContent .products .paginationWrapper .custom-pagination .page-item a.page-link {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  background: transparent;
  color: #000;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 600;
}
body .mainContent .products .paginationWrapper .custom-pagination .page-item a.page-link:hover {
  color: var(--primary-color);
}
body .mainContent .products .paginationWrapper .custom-pagination .page-item.active a.page-link {
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  border-radius: 2px;
}
body .mainContent .products .paginationWrapper .custom-pagination .dots {
  padding: 10px 14px;
  color: #000;
  font-weight: bold;
}
body .mainContent .product-detail .product-title {
  font-size: 30px;
  color: #c90000;
  text-transform: capitalize;
}
body .mainContent .product-detail .price-box .current-price {
  font-size: 24px;
  font-weight: bold;
}
body .mainContent .product-detail .price-box .original-price {
  font-size: 18px;
  color: #888;
  margin-left: 10px;
}
body .mainContent .product-detail .product-subtitle {
  font-weight: 500;
  margin-top: 5px;
}
body .mainContent .product-detail .product-desc {
  color: #555;
}
body .mainContent .product-detail .color-options {
  margin-top: 15px;
}
body .mainContent .product-detail .color-options .color-swatch {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #ccc;
  margin-right: 8px;
  cursor: pointer;
  transition: border-color 0.3s;
}
body .mainContent .product-detail .color-options .color-swatch.selected {
  border-color: #000;
  box-shadow: 0 0 0 2px #007bff;
}
body .mainContent .product-detail .quantity-cart {
  gap: 20px;
  display: flex;
  align-items: center;
  margin-top: 15px;
}
body .mainContent .product-detail .wishlist-link {
  display: flex;
  align-items: center;
  gap: 5px;
}
body .mainContent .product-detail .wishlist-link .likeBtn {
  position: unset;
}
body .mainContent .product-detail .product-meta {
  font-size: 14px;
  color: #555;
}
body .mainContent .product-detail .product-meta li {
  margin-bottom: 5px;
}
body .mainContent .product-detail .key-highlights {
  font-size: 14px;
}
body .mainContent .product-detail .key-highlights .highlight-row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-bottom: 6px;
}
body .mainContent .product-detail .key-highlights .highlight-row .keyPoints {
  white-space: nowrap;
}
body .mainContent .product-detail .key-highlights .highlight-row .keyPoints strong {
  color: #333;
  font-weight: 600;
}
body .mainContent .product-detail .key-highlights .highlight-row .keyPoints span {
  color: #888;
  font-weight: 400;
  margin-left: 4px;
}
body .mainContent .product-detail .product-gallery .thumbnailWrapper {
  overflow-y: scroll;
  scrollbar-width: none;
  height: 500px;
}
body .mainContent .product-detail .product-gallery .thumbnailWrapper .thumbnails {
  height: 100px;
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  transition: border-color 0.2s ease;
}
body .mainContent .product-detail .product-gallery .thumbnailWrapper .thumbnails .thumb {
  -o-object-fit: contain;
     object-fit: contain;
}
body .mainContent .product-detail .product-gallery .thumbnailWrapper .thumbnails:hover, body .mainContent .product-detail .product-gallery .thumbnailWrapper .thumbnails.active-thumb {
  border-color: #007bff;
}
body .mainContent .product-detail .product-gallery .main-image {
  height: 500px;
  width: 100%;
  border: 1px solid #f0f0f0;
}
body .mainContent .product-detail .product-gallery .main-image img {
  -o-object-fit: contain;
     object-fit: contain;
}
body .mainContent .product-details-tabs .nav-tabs {
  border-bottom: none;
}
body .mainContent .product-details-tabs .nav-tabs .nav-link {
  font-weight: 600;
  color: #333;
  border: none;
  position: relative;
  padding: 10px 20px;
  margin: 0 10px;
  background: none;
}
body .mainContent .product-details-tabs .nav-tabs .nav-link.active {
  color: #d7261e;
}
body .mainContent .product-details-tabs .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  height: 3px;
  background-color: #d7261e;
  width: 100%;
  top: 0;
  left: 0;
}
body .mainContent .product-details-tabs .tab-content {
  font-size: 15px;
}
body .mainContent .product-details-tabs .tab-content p {
  color: #555;
}
body .mainContent .product-details-tabs .tab-content h6 {
  font-weight: 600;
  margin-bottom: 5px;
}
body .mainContent .product-details-tabs .tab-content small {
  color: #777;
  padding: 0 5px;
}
body .mainContent .product-details-tabs .tab-content img {
  width: 40px;
  height: auto;
}
body .mainContent .payHead {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
body .mainContent .bottom-line {
  border-bottom: 1px solid #cccccc;
}
body .mainContent .details {
  margin-bottom: 2rem;
}
body .mainContent .details .profileDetails {
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .mainContent .details .profileDetails .editbtn {
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}
body .mainContent .checkout .shipmentForm {
  margin-bottom: 2rem;
}
body .mainContent .checkout .shipmentForm .formmDetails {
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 7px;
}
body .mainContent .checkout .shipmentForm .formmDetails .inputField {
  margin-bottom: 1rem;
}
body .mainContent .checkout .shipmentForm .formmDetails .inputField label {
  font-size: 14px;
  display: block;
  margin-bottom: 0.5rem;
}
body .mainContent .checkout .shipmentForm .formmDetails .inputField label span {
  font-size: 30px;
  color: var(--primary-color);
  line-height: 0px;
}
body .mainContent .checkout .shipmentForm .formmDetails .inputField input {
  width: 100%;
  outline: 0;
  border: 0;
  border-bottom: 1px solid #cccccc;
}
body .mainContent .checkout .addressType {
  margin-bottom: 2rem;
}
body .mainContent .payment .paymentMethod .payRadio {
  margin-bottom: 1rem;
}
body .mainContent .payment .paymentMethod .payRadio .subHead {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
body .mainContent .payment .paymentMethod .paydetails {
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 7px;
}
body .mainContent .payment .paymentMethod .paydetails .inputField label {
  font-size: 14px;
  font-weight: 400;
}
body .mainContent .payment .paymentMethod .paydetails .inputField input {
  width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #acacac;
  padding: 7px 10px;
  border-radius: 7px;
  outline: 0;
}
body .mainContent .payment .paymentMethod .paydetails .saveDetails {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
}
body .mainContent .payment .paymentMethod .paydetails .btnGroup {
  width: 100%;
  margin-bottom: 1rem;
}
body .mainContent .payment .paymentMethod .paydetails .btnGroup .commonBtn {
  display: block;
  width: 100%;
  font-weight: 600;
  text-align: center;
}
body .mainContent .payment .paymentMethod .paydetails .guideLine {
  font-size: 14px;
  color: #acacac;
}
body .mainContent .cart .details .carts .cartItem {
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 7px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
}
body .mainContent .cart .details .carts .cartItem .cartDetails {
  display: flex;
  gap: 10px;
}
body .mainContent .cart .details .carts .cartItem .cartDetails .cartImg {
  width: 80px;
  height: 80px;
}
body .mainContent .cart .details .carts .cartItem .cartDetails .cartData .cartName {
  font-size: 16px;
  font-weight: 600;
}
body .mainContent .cart .details .carts .cartItem .cartDetails .cartData .quant {
  font-size: 14px;
  color: #acacac;
}
body .mainContent .cart .details .carts .cartItem .rightPart {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body .mainContent .cart .details .carts .cartItem .rightPart .delete {
  border: none;
  background: none;
}
body .mainContent .cart .couponType .couponItem {
  display: flex;
  gap: 10px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 7px;
  margin-bottom: 1rem;
  align-items: center;
}
body .mainContent .cart .couponType .couponItem .couponImg {
  width: 20px;
  height: 20px;
}
body .mainContent .cart .couponType .couponItem .couponText .text {
  font-size: 14px;
}
body .mainContent .cart .couponType .couponItem .couponText .subText {
  color: #acacac;
  font-size: 12px;
}
body .mainContent .orderSlip .orderSummary {
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 7px;
  margin-bottom: 2rem;
}
body .mainContent .orderSlip .orderSummary .checkoutProduct .addProduct {
  display: flex;
  gap: 10px;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
body .mainContent .orderSlip .orderSummary .checkoutProduct .addProduct .productImg {
  height: 70px;
  width: 20%;
}
body .mainContent .orderSlip .orderSummary .checkoutProduct .addProduct .productDetails {
  display: flex;
  justify-content: space-between;
  width: 80%;
}
body .mainContent .orderSlip .orderSummary .checkoutProduct .addProduct .productDetails .names .productName {
  font-size: 14px;
}
body .mainContent .orderSlip .orderSummary .checkoutProduct .addProduct .productDetails .names .quantity {
  font-size: 10px;
  color: #acacac;
}
body .mainContent .orderSlip .orderSummary .checkoutProduct .addProduct .productDetails .names .prize {
  font-size: 12px;
  font-weight: 700;
}
body .mainContent .orderSlip .orderSummary .couponCode {
  width: 100%;
  display: flex;
  gap: 10px;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
body .mainContent .orderSlip .orderSummary .couponCode input {
  width: 70%;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
  padding: 10px 5px;
  border-radius: 7px;
  border: 1px solid #acacac;
  outline: 0;
}
body .mainContent .orderSlip .orderSummary .couponCode .commonBtn {
  width: 30%;
}
body .mainContent .orderSlip .orderSummary .sumUp {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
body .mainContent .orderSlip .orderSummary .sumUp .subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
body .mainContent .orderSlip .orderSummary .sumUp .subtotal .prize {
  font-weight: 600;
}
body .mainContent .orderSlip .orderSummary .total {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
body .mainContent .orderSlip .orderSummary .total .head .subtext {
  color: #acacac;
}
body .mainContent .orderSlip .orderSummary .total .prize {
  font-size: 30px;
  font-weight: 600;
}
body .mainContent .orderSlip .policyText {
  font-size: 14px;
  font-weight: 400;
}
body .mainContent .orderSlip .policyText a {
  color: var(--primary-color);
  text-decoration: none;
}
body .mainContent .orderSlip .safePay {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  margin-top: 1rem;
  gap: 10px;
}
body .mainContent .orderSlip .safePay .iconItem {
  height: 20px;
  width: 20px;
  display: block;
}
body .mainContent .orderSlip .safePay .iconItem img {
  -o-object-fit: contain;
     object-fit: contain;
}
body .mainContent .radioOp {
  display: flex;
  gap: 10px;
}
body .mainContent .radioOp .option {
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 7px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  cursor: pointer;
}
body .mainContent .radioOp input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease-in-out;
}
body .mainContent .radioOp input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
}
body .mainContent .contactPage .contactBanner {
  height: 70vh;
  position: relative;
  background-image: url(../images/contact/contactBannerbg.jpg);
  background-size: cover;
  background-position: center;
}
body .mainContent .contactPage .contactBanner .contactBannerContent {
  width: 400px;
  position: absolute;
  bottom: 20px;
  left: 20px;
}
body .mainContent .contactPage .contactBanner .contactBannerContent .commonHeading {
  margin-bottom: 0;
  color: var(--primary-color);
}
body .mainContent .contactPage .contactBanner .contactBannerContent p {
  color: var(--text-color-1);
  font-size: 14px;
  margin-bottom: 0;
}
body .mainContent .contactPage .contactDetails {
  background: var(--text-color-1);
  padding: 2rem 0;
}
body .mainContent .contactPage .contactDetails .contactCards {
  background: var(--text-color-2);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 3rem 1rem;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(255, 255, 255, 0.5);
}
body .mainContent .contactPage .contactDetails .contactCards .contactIcon {
  font-size: 34px;
  color: var(--primary-color);
}
body .mainContent .contactPage .contactDetails .contactCards .contactHead {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
body .mainContent .contactPage .contactDetails .contactCards .contactText {
  font-size: 14px;
  color: var(--primary-color);
  text-align: center;
}
body .mainContent .contactPage .contactDetails .contactCards .contactText p {
  margin-bottom: 0;
}
body .mainContent .contactPage .contactDetails .googleMap {
  height: 50vh;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(255, 255, 255, 0.5);
  overflow: hidden;
}
body .mainContent .contactPage .contactDetails .googleMap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
body .mainContent .contactPage .contactForm .formHeader {
  text-align: center;
  margin-bottom: 4rem;
}
body .mainContent .contactPage .contactForm .formHeader .commonHeading {
  margin-bottom: 0;
}
body .mainContent .contactPage .contactForm .contactFormContent .form-label {
  display: none;
}
body .mainContent .contactPage .contactForm .contactFormContent .form-control {
  padding: 10px;
  box-shadow: none;
  outline: none;
  border-radius: 0;
  border: 1px solid #cccccc;
  font-size: 14px;
}
body .mainContent .contactPage .contactForm .contactFormContent .commonBtn {
  width: 300px;
}
body .mainContent .registrationForm {
  background-image: url(../images/about_us/1.png);
}
body .mainContent .registrationForm .commonHeading {
  color: var(--text-color-2);
}
body .mainContent .registrationForm .formDesign {
  box-shadow: 0px 8px 25px rgba(255, 255, 255, 0.3);
  background: var(--text-color-2);
  border-radius: 10px;
}
body .mainContent .registrationForm .formDesign form {
  padding: 0rem 1rem 1rem 1rem;
}
body .mainContent .orderItems {
  margin-top: 130px;
}
body .mainContent .orderItems .item {
  padding: 15px;
  border-radius: 7px;
  margin-bottom: 1rem;
  display: flex;
  gap: 10px;
  border: 1px solid #dbdbdb;
}
body .mainContent .orderItems .item .itemImage {
  width: 75px;
  height: 75px;
}
body .mainContent .orderItems .item .itemImage img {
  -o-object-fit: contain;
     object-fit: contain;
}
body .mainContent .orderItems .item .itemDetails {
  display: flex;
  flex-direction: column;
  flex-grow: 0.5;
  gap: 5px;
}
body .mainContent .orderItems .item .itemDetails .itemName {
  font-size: 14px;
  color: #212121;
  font-weight: 400;
  margin-bottom: 0;
}
body .mainContent .orderItems .item .itemDetails .itemColor {
  color: #878787;
  font-size: 12px;
  margin-bottom: 0;
}
body .mainContent .orderItems .item .itemPrice {
  color: #212121;
  flex-grow: 0.2;
}
body .mainContent .orderItems .item .itemDelivery {
  flex-grow: 0.5;
}
body .mainContent .orderItems .item .itemDelivery .deliveryStatus {
  font-size: 14px;
  font-weight: 500;
}
body .mainContent .orderItems .item .itemDelivery .deliveryDate {
  font-size: 12px;
}
body .mainContent .orderItems .item:hover {
  box-shadow: 0 1px 12px 2px #dbdbdb;
}
body .parallex-effect {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 5rem 0;
  z-index: 1;
  margin-bottom: 0;
}
body .parallex-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
body .why-teflaa-hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("https://images.unsplash.com/photo-1508685096489-7aacd43bd3b1?auto=format&fit=crop&w=1600&q=80") no-repeat center/cover;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}
body .why-teflaa-hero-section h1 {
  font-size: 3rem;
}
body .why-teflaa-hero-section p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 20px auto 0;
}
body .problems-section .problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  text-align: center;
}
body .problems-section .problems-grid .problem {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}
body .problems-section .problems-grid .problem:hover {
  transform: translateY(-6px);
}
body .problems-section .problems-grid .problem i {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--primary-color);
}
body .how-section .how-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
body .how-section .how-wrapper img {
  flex: 1;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
body .how-section .how-wrapper .how-text {
  flex: 1;
  min-width: 280px;
}
body .features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
body .features-section .features-grid .feature-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  cursor: pointer;
  transition: all 0.35s ease;
}
body .features-section .features-grid .feature-card:hover {
  transform: translateY(-8px);
  background: var(--primary-color);
  color: #fff;
}
body .features-section .features-grid .feature-card:hover i {
  color: #fff;
}
body .features-section .features-grid .feature-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}
body .premium-section .premium-swiper {
  width: 100%;
  padding-bottom: 50px;
}
body .premium-section .premium-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}
body .premium-section .premium-swiper .swiper-slide .premium-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-height: 220px;
  width: 100%;
  max-width: 350px;
}
body .premium-section .premium-swiper .swiper-slide .premium-card img {
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
body .premium-section .premium-swiper .swiper-slide .premium-card:hover {
  transform: translateY(-8px);
}
body .premium-section .premium-swiper .swiper-slide .premium-card h3 {
  font-size: 1.3rem;
  color: #005c99;
  margin-bottom: 12px;
}
body .premium-section .premium-swiper .swiper-slide .premium-card p {
  font-size: 0.95rem;
  color: #444;
}
body .cta-section {
  text-align: center;
  color: #fff;
  padding: 80px 20px;
  border-radius: 12px;
  background-image: url(https://images.unsplash.com/photo-1501594907352-04cda38ebc29?utm_source=chatgpt.com);
}
body .cta-section h2 {
  color: #fff;
}
body .cta-section button {
  margin-top: 20px;
  background: #fff;
  color: var(--primary-color);
  border: none;
  padding: 16px 40px;
  font-size: 1.1rem;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}
body .cta-section button:hover {
  background: var(--secondary-color);
  color: #fff;
}
body #cartSidebar .offcanvas-body {
  overflow: hidden;
  padding: 0;
}
body #cartSidebar .offcanvas-body .cart {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
body #cartSidebar .offcanvas-body .cart .details {
  margin-bottom: 0.5rem;
  overflow-y: auto;
  height: 100%;
}
body #cartSidebar .offcanvas-body .cart .details .carts {
  padding: 1rem;
}
body #cartSidebar .offcanvas-body .cart .details .carts .cartItem {
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 7px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
}
body #cartSidebar .offcanvas-body .cart .details .carts .cartItem .cartDetails {
  display: flex;
  gap: 10px;
}
body #cartSidebar .offcanvas-body .cart .details .carts .cartItem .cartDetails .cartImg {
  width: 80px;
  height: 80px;
}
body #cartSidebar .offcanvas-body .cart .details .carts .cartItem .cartDetails .cartData .cartName {
  font-size: 16px;
  font-weight: 600;
}
body #cartSidebar .offcanvas-body .cart .details .carts .cartItem .cartDetails .cartData .quant {
  font-size: 14px;
  color: #acacac;
}
body #cartSidebar .offcanvas-body .cart .details .carts .cartItem .rightPart {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body #cartSidebar .offcanvas-body .cart .details .carts .cartItem .rightPart .delete {
  border: none;
  background: none;
}
body #cartSidebar .offcanvas-body .cart .btnGroup {
  width: 100%;
  padding: 1rem;
}
body #cartSidebar .offcanvas-body .cart .btnGroup .commonBtn {
  display: block;
  width: 100%;
  text-align: center;
}
body .product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
body .product-modal.show {
  display: flex;
}
body .product-modal .product-modal-content {
  background: #fff;
  width: 90%;
  max-width: 1100px;
  border-radius: 8px;
  padding: 30px;
  position: relative;
  overflow-y: auto;
  max-height: 90vh;
}
body .product-modal .product-modal-content .modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}
body .product-modal .product-modal-content .product-modal-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-image {
  flex: 1 1 40%;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-image img {
  width: 100%;
  height: auto;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-image #productImageCarousel {
  position: sticky;
  top: 0;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-image .buy-now {
  display: block;
  width: 100%;
  margin-top: 20px;
  background: red;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info {
  flex: 1 1 55%;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .breadcrumb {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
  gap: 5px;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .breadcrumb a {
  color: #888;
  text-decoration: none;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .breadcrumb a:hover {
  text-decoration: underline;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .product-title {
  font-size: 26px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .product-price {
  font-size: 20px;
  color: #000;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .product-price del {
  margin-left: 10px;
  color: #999;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .product-subtext {
  font-size: 15px;
  color: #555;
  margin-top: 10px;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .color-options {
  margin: 20px 0;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .color-options .colors {
  display: flex;
  gap: 10px;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .color-options .colors .color-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ccc;
  cursor: pointer;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .color-options .colors .color-circle.blue {
  background: #add8e6;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .color-options .colors .color-circle.cyan {
  background: #00bcd4;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .color-options .colors .color-circle.black {
  background: #000;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .quantity-addcart {
  display: flex;
  align-items: center;
  gap: 20px;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .quantity-addcart .quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .quantity-addcart .quantity .qty-btn {
  padding: 6px 10px;
  background: #eee;
  border: 1px solid #ccc;
  cursor: pointer;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .quantity-addcart .add-to-cart {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .wishlist {
  display: inline-block;
  margin: 15px 0;
  color: #555;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .product-meta {
  margin: 20px 0;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .product-meta p {
  margin: 5px 0;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .key-highlights {
  margin-top: 20px;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .key-highlights h4 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .key-highlights .highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  font-size: 14px;
  color: #444;
}
body .product-modal .product-modal-content .product-modal-body .product-modal-info .key-highlights .highlight-list span strong {
  font-weight: 600;
  color: #333;
}
body #loginmodal .modal-dialog .modal-content .modal-body,
body #loginmodal2 .modal-dialog .modal-content .modal-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 2rem;
}
body #loginmodal .modal-dialog .modal-content .modal-body .headWrap,
body #loginmodal2 .modal-dialog .modal-content .modal-body .headWrap {
  display: flex;
  gap: 10px;
  align-items: center;
}
body #loginmodal .modal-dialog .modal-content .modal-body .headWrap .commonBtn,
body #loginmodal2 .modal-dialog .modal-content .modal-body .headWrap .commonBtn {
  padding: 4px 8px;
}
body #loginmodal .modal-dialog .modal-content .modal-body .loginHeading,
body #loginmodal2 .modal-dialog .modal-content .modal-body .loginHeading {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-color);
}
body #loginmodal .modal-dialog .modal-content .modal-body .signUpOption,
body #loginmodal2 .modal-dialog .modal-content .modal-body .signUpOption {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
  align-items: center;
  border: 1px solid #cccccc;
  border-radius: 8px;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
}
body #loginmodal .modal-dialog .modal-content .modal-body .signUpOption .icon,
body #loginmodal2 .modal-dialog .modal-content .modal-body .signUpOption .icon {
  height: 24px;
  width: 24px;
}
body #loginmodal .modal-dialog .modal-content .modal-body .nextDiv,
body #loginmodal2 .modal-dialog .modal-content .modal-body .nextDiv {
  display: flex;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 10px 0;
}
body #loginmodal .modal-dialog .modal-content .modal-body .nextDiv::before, body #loginmodal .modal-dialog .modal-content .modal-body .nextDiv::after,
body #loginmodal2 .modal-dialog .modal-content .modal-body .nextDiv::before,
body #loginmodal2 .modal-dialog .modal-content .modal-body .nextDiv::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #cccccc;
}
body #loginmodal .modal-dialog .modal-content .modal-body .nextDiv span,
body #loginmodal2 .modal-dialog .modal-content .modal-body .nextDiv span {
  padding: 0 10px;
}
body #loginmodal .modal-dialog .modal-content .modal-body .loginText,
body #loginmodal2 .modal-dialog .modal-content .modal-body .loginText {
  text-align: center;
  font-size: 14px;
  padding: 10px;
}
body #loginmodal .modal-dialog .modal-content .modal-body .loginText .loginBtn,
body #loginmodal2 .modal-dialog .modal-content .modal-body .loginText .loginBtn {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  background: transparent;
  border: 0;
}
body #loginmodal .modal-dialog .modal-content .modal-body .loginText .loginBtn:hover,
body #loginmodal2 .modal-dialog .modal-content .modal-body .loginText .loginBtn:hover {
  text-decoration: underline;
}
body #profileModal .modal-dialog .modal-content .modal-header .headWrap {
  display: flex;
  gap: 10px;
  align-items: center;
}
body #profileModal .modal-dialog .modal-content .modal-header .headWrap .profileImg {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
body #profileModal .modal-dialog .modal-content .modal-header .headWrap .detailsWrap .modal-slug {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color);
}
body #profileModal .modal-dialog .modal-content .modal-header .headWrap .detailsWrap .modal-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color-1);
}
body #profileModal .modal-dialog .modal-content .modal-body {
  padding: 20px;
}
body #profileModal .modal-dialog .modal-content .modal-body .formmDetails .inputField {
  margin-bottom: 1rem;
}
body #profileModal .modal-dialog .modal-content .modal-body .formmDetails .inputField .formLabel {
  font-size: 12px;
  display: block;
  margin-bottom: 0.5rem;
}
body #profileModal .modal-dialog .modal-content .modal-body .formmDetails .inputField .formControl {
  width: 100%;
  outline: 0;
  border: 1px solid #cccccc;
  padding: 5px;
  border-radius: 5px;
  font-size: 14px;
}
body .mainFooter {
  background: #000000;
  padding: 5rem 0;
  color: var(--text-color-2);
}
body .mainFooter ul {
  list-style: none;
  padding: 0;
}
body .mainFooter ul li a {
  color: var(--text-color-2);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
body .mainFooter ul li a:hover {
  color: var(--primary-color);
  transform: scale(1.05);
}
body .mainFooter .linksHead {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 1rem;
}
body .mainFooter .footerLinks .linksList {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}
body .mainFooter .footerLinks .linksList li ul {
  gap: 0px;
}
body .mainFooter .connect {
  margin-bottom: 2rem;
  font-size: 18px;
}
body .mainFooter .connect .phone {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 0.5rem;
}
body .mainFooter .socialPay {
  display: flex;
  justify-content: space-between;
}
body .mainFooter .socialPay .social .socialIcon {
  gap: 10px;
  display: flex;
}
body .mainFooter .socialPay .social .socialIcon .iconItem {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--text-color-1);
  background: var(--text-color-2);
  border-radius: 50%;
}
body .mainFooter .socialPay .social .socialIcon .iconItem:hover {
  background: var(--primary-color);
  color: var(--text-color-2);
}
body .mainFooter .socialPay .logo {
  width: 80px;
  height: 100px;
}
body .mainFooter .policy {
  margin-top: 2rem;
}
body .mainFooter .policy ul {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
body .mainFooter .copyRight {
  text-align: center;
}
body .mainFooter .copyRight a {
  color: var(--text-color-2);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
body .mainFooter .copyRight a:hover {
  color: var(--primary-color);
  transform: scale(1.05);
}

@media (min-width: 1800.98px) {
  body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide:nth-child(1) .secondaryImg {
    height: 410px;
    width: 430px;
  }
  body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide:nth-child(2) .secondaryImg {
    height: 590px;
    width: 400px;
  }
  body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide:nth-child(3) .secondaryImg {
    height: 520px;
    width: 670px;
  }
  body .mainContent .features .featureDiv {
    height: 60vh;
  }
  body .mainContent .exploreSection {
    height: 70vh;
  }
  body .mainContent .exploreSection .container,
  body .mainContent .exploreSection .row {
    height: 100%;
  }
}
@media (max-width: 1200.98px) {
  body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item .nav-link {
    font-size: 12px;
  }
  body .mainContent .features .featureDiv {
    height: 60vh;
  }
  body .mainContent .features .featureDiv .featureDesign .center .centerItem {
    width: 200px;
    height: 200px;
  }
  body .mainContent .features .featureDiv .featureDesign .item .itemContent {
    width: 90px;
    height: 90px;
  }
  body .mainContent .features .featureDiv .featureDesign .item .itemContent .featureContent {
    width: 200px;
  }
  body .mainContent .features .featureDiv .featureDesign .item .itemContent .featureContent .featureHead {
    font-size: 20px;
  }
  body .mainContent .features .featureDiv .featureDesign .item.smart .featureContent, body .mainContent .features .featureDiv .featureDesign .item.rigorous .featureContent, body .mainContent .features .featureDiv .featureDesign .item.streamlined .featureContent {
    right: 100px;
  }
  body .mainContent .features .featureDiv .featureDesign .item.customer .featureContent, body .mainContent .features .featureDiv .featureDesign .item.high .featureContent, body .mainContent .features .featureDiv .featureDesign .item.sustainable .featureContent {
    left: 100px;
  }
  body .mainContent .testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonialCard {
    flex-direction: column;
  }
  body .mainContent .testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonialCard .testimonialContent {
    text-align: center;
  }
}
@media (max-width: 991.98px) {
  body .mainHeader .navbar #navbarCustom .navbar-nav .nav-item.searchDrop .dropdown-menu .dropdown-item .searchControl {
    width: 100%;
  }
  body .mainContent .exploreSection .exploreContent {
    padding: 3rem 0;
  }
  body .mainContent .aboutUs {
    padding: 4rem 0;
  }
  body .mainContent .aboutUs .aboutContent .aboutHeading {
    font-size: 30px;
  }
  body .mainContent .aboutUs .aboutContent .aboutPara {
    font-size: 12px;
  }
  body .mainContent .aboutUs .aboutBanner {
    height: unset;
  }
  body .mainContent .why .whyChooseusBG {
    padding: 2rem 1rem;
  }
  body .mainContent .why .whyChooseusBG .whyChooseusContent .whyHeading {
    font-size: 34px;
  }
  body .mainContent .why .whyChooseusBG .whyChooseusContent .whypara {
    font-size: 18px;
  }
  body .mainContent .popularCat .catCard .catImage img {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: right;
       object-position: right;
  }
  body .mainContent .quality .rightSide {
    padding: 3rem 1rem 0rem;
  }
  body .mainContent .tagStrip .stripDetail {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 767.98px) {
  body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide .mobileImg {
    height: 50vh;
  }
  body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide .heromaindiv {
    height: unset;
  }
  body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide .heromaindiv .heroContent {
    width: 100%;
    color: var(--text-color-1);
    text-align: center;
  }
  body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide .heromaindiv .heroContent .subheading {
    display: block;
  }
  body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide .heromaindiv .heroContent .description {
    display: block;
  }
  body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide .heromaindiv .heroContent .btnGroup {
    justify-content: center;
  }
  body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide .heromaindiv::after {
    display: none;
  }
  body .mainContent .heroSection .heroSwiper .swiper-pagination {
    bottom: 0px;
  }
  body .mainContent .features .featureDiv {
    height: auto;
  }
  body .mainContent .features .featureDiv .featureDesign {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  body .mainContent .features .featureDiv .featureDesign .center {
    display: none;
  }
  body .mainContent .features .featureDiv .featureDesign .item {
    position: unset;
    transform: unset;
  }
  body .mainContent .features .featureDiv .featureDesign .item .itemContent {
    width: 100%;
    height: 100%;
    box-shadow: none;
    background: none;
    border-radius: 0;
    justify-content: unset;
    gap: 10px;
  }
  body .mainContent .features .featureDiv .featureDesign .item .itemContent .logo {
    width: 20%;
    height: auto;
    background: white;
    border-radius: 50%;
    box-shadow: 10px 10px 12px rgba(0, 0, 0, 0.2);
  }
  body .mainContent .features .featureDiv .featureDesign .item .itemContent .logo img:nth-child(2) {
    display: none;
  }
  body .mainContent .features .featureDiv .featureDesign .item .itemContent .featureContent {
    position: unset;
    width: 80%;
  }
  body .mainContent .features .featureDiv .featureDesign div:nth-child(odd) .itemContent {
    flex-direction: row-reverse;
  }
  body .mainContent .features .featureDiv .featureDesign div:nth-child(odd) .itemContent .featureContent {
    text-align: right;
  }
  body .mainContent .applianceTab .customTab #appliances-tab {
    flex-wrap: nowrap;
    overflow-y: auto;
  }
  body .mainContent .exploreSection {
    position: relative;
  }
  body .mainContent .exploreSection .exploreContent {
    position: relative;
    z-index: 1;
  }
  body .mainContent .exploreSection::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  }
  body .mainContent .softener-section .process {
    flex-direction: column;
    gap: 30px;
  }
  body .mainContent .softener-section .process .box_wrapper {
    width: 100%;
  }
  body .mainContent .softener-section .process .resinDesign {
    width: 100%;
  }
  body .mainContent .stats-section .statsHead {
    text-align: center;
  }
  body .mainContent .stats-section .statscard {
    width: 85%;
    padding: 2rem;
  }
  body .mainContent .stats-section .statscard::before {
    height: 105%;
    width: 100%;
  }
  body .mainFooter .socialPay {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 480.98px) {
  .commonBtn,
  .secondaryBtn {
    font-size: 14px;
    padding: 4px 8px;
  }
  .commonHeading {
    font-size: 30px;
  }
  .miniHead {
    font-size: 18px;
  }
  .headingText {
    font-size: 12px;
  }
  body .mainHeader .navbar {
    height: 70px;
  }
  body .mainHeader .navbar .navbar-brand {
    height: 70px;
    width: 46px;
  }
  body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide {
    background-position: left;
  }
  body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide .heromaindiv .heroContent .mainheading {
    font-size: 40px;
    word-spacing: unset;
    letter-spacing: unset;
  }
  body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide .heromaindiv .heroContent .subheading {
    font-size: 14px;
  }
  body .mainContent .heroSection .heroSwiper .swiper-wrapper .swiper-slide .heromaindiv .heroContent .description {
    font-size: 12px;
  }
  body .mainContent .features .featureDiv .featureDesign .item .itemContent .featureContent .featureHead {
    font-size: 16px;
  }
  body .mainContent .features .featureDiv .featureDesign .item .itemContent .featureContent .featurepara {
    font-size: 12px;
  }
  body .mainContent .applianceTab .customTab #appliances-tab .nav-item .nav-link {
    font-size: 16px;
  }
  body .mainContent .productCard {
    height: 450px;
  }
  body .mainContent .productCard .productImage {
    height: 55%;
  }
  body .mainContent .productCard .productContent {
    height: 45%;
    padding: 0.5rem;
  }
  body .mainContent .productCard .productContent .productName {
    height: 18px;
    -webkit-line-clamp: 1;
  }
  body .mainContent .productCard .productContent .productDescription {
    font-size: 10px;
  }
  body .mainContent .productCard .productContent .discount {
    font-size: 10px;
  }
  body .mainContent .productCard .productContent .price {
    font-size: 12px;
  }
  body .mainContent .productCard .productContent .price .originalPrice {
    font-size: 10px;
    font-weight: 600;
  }
  body .mainContent .productCard .productContent .btnGroup {
    gap: 5px;
  }
  body .mainContent .productCard .productContent .btnGroup .commonBtn {
    font-size: 12px;
  }
  body .mainContent .productCard .productContent .btnGroup .commonBtn i {
    right: 10px;
  }
  body .mainContent .why .whyCard {
    margin-bottom: 1rem;
  }
  body .mainContent .why .whyCard .whyContent .whyHeading {
    font-size: 18px;
  }
  body .mainContent .why .whyCard .whyContent .whyDescription {
    margin-bottom: 0;
  }
  body .mainContent .why .whyChooseusBG {
    margin-top: 2rem;
    background-position: right;
  }
  body .mainContent .why .whyChooseusBG .whyChooseusContent .whyHeading {
    font-size: 24px;
  }
  body .mainContent .why .whyChooseusBG .whyChooseusContent .whypara {
    display: none;
  }
  body .mainContent .testimonials .testimonialsSwiper {
    height: 100%;
  }
  body .mainContent .testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonialCard {
    height: 100%;
  }
  body .mainContent .testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonialCard .testimonialDetails {
    gap: 6px;
  }
  body .mainContent .testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonialCard .testimonialDetails .testimonialName {
    font-size: 18px;
  }
  body .mainContent .testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonialCard .testimonialDetails .testimonialDesignation {
    font-size: 14px;
  }
  body .mainContent .testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonialCard .testimonialContent {
    font-size: 12px;
  }
  body .mainContent .testimonials .testimonialsSwiper .swiper-wrapper .swiper-slide .testimonialCard .testimonialContent .testimonialText {
    margin-bottom: 0;
  }
  body .mainContent .popularCat .catCard {
    height: auto;
  }
  body .mainContent .popularCat .catCard .catContent {
    padding: 2rem 1rem;
  }
  body .mainContent .popularCat .catCard .catContent .catName {
    font-size: 18px;
  }
  body .mainContent .popularCat .catCard .catContent .catDescription {
    display: none;
    font-size: 12px;
    margin-bottom: 0.5rem;
  }
  body .mainContent .exploreSection {
    background-position: left;
  }
  body .mainContent .exploreSection .exploreContent {
    gap: 0.5rem;
    padding: 2rem 0;
  }
  body .mainContent .exploreSection .exploreContent .commonHeading {
    font-size: 24px;
  }
  body .mainContent .exploreSection .exploreContent .exploresubHead {
    font-size: 14px;
  }
  body .mainContent .exploreSection .exploreContent .exploreDescription {
    font-size: 12px;
  }
  body .mainContent .blogs .blog {
    height: 250px;
  }
  body .mainContent .aboutUs {
    padding: 2rem 0;
  }
  body .mainContent .aboutUs .aboutContent .aboutHeading {
    font-size: 24px;
  }
  body .mainContent .aboutUs .aboutContent .aboutList {
    font-size: 12px;
  }
  body .mainContent .aboutUs .aboutContent .secondaryBtn {
    margin-top: 0;
  }
  body .mainContent .quality {
    padding: 2rem 1rem;
  }
  body .mainContent .quality .leftSide .tagText span {
    font-size: 10px;
  }
  body .mainContent .quality .leftSide .heading {
    font-size: 20px;
  }
  body .mainContent .quality .leftSide .imgDiv .secondaryImg {
    width: 90px;
    height: 60px;
    right: -20px;
    bottom: -20px;
    padding: 8px;
  }
  body .mainContent .quality .rightSide {
    padding: 3rem 0rem 0rem;
  }
  body .mainContent .quality .rightSide .paraText {
    font-size: 12px;
  }
  body .mainContent .quality .rightSide .policyList .policy {
    flex-direction: column;
    align-items: end;
    padding-bottom: 1rem;
  }
  body .mainContent .quality .rightSide .policyList .policy .policyHead {
    width: 100%;
    align-items: unset;
  }
  body .mainContent .quality .rightSide .policyList .policy .policyHead .policyHeading {
    width: unset;
  }
  body .mainContent .quality .rightSide .policyList .policy .policyPara {
    text-align: end;
    margin-top: -30px;
  }
  body .mainContent .misvis .smallDiv {
    gap: 6px;
  }
  body .mainContent .misvis .smallDiv .divImg {
    height: 40px;
    width: 40px;
  }
  body .mainContent .misvis .smallDiv .divHead {
    font-size: 18px;
  }
  body .mainContent .misvis .smallDiv .divPara {
    font-size: 12px;
  }
  body .mainContent .misvis .misvisImg {
    height: 400px;
  }
  body .mainContent .misvis .misvisImg img {
    -o-object-position: top;
       object-position: top;
  }
  body .mainContent .tagStrip {
    display: none;
  }
  body .mainContent .contactPage .contactBanner {
    height: 50vh;
    background-position: right;
  }
  body .mainContent .contactPage .contactBanner .contactBannerContent {
    width: 340px;
    z-index: 1;
  }
  body .mainContent .contactPage .contactBanner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  }
  body .mainContent .contactPage .contactDetails .contactCards {
    padding: 2rem 1rem;
  }
  body .mainContent .contactPage .contactDetails .contactCards .contactIcon {
    font-size: 24px;
  }
  body .mainContent .contactPage .contactDetails .contactCards .contactHead {
    font-size: 18px;
  }
  body .mainContent .contactPage .contactDetails .contactCards .contactText {
    font-size: 12px;
  }
  body .mainContent .product-detail .product-gallery .main-image,
  body .mainContent .product-detail .product-gallery .thumbnailWrapper {
    height: 350px;
  }
  body .mainFooter {
    padding: 3rem 0;
  }
  body .mainFooter .linksHead {
    font-size: 16px;
    margin-bottom: 0.8rem;
  }
  body .mainFooter .connect {
    font-size: 14px;
  }
  body .mainFooter .footerLinks .linksList {
    gap: 8px;
    font-size: 12px;
  }
  body .mainFooter .policy {
    font-size: 12px;
  }
  .products .paginationWrapper .custom-pagination {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.search-area {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}
.search-area .search-form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 200px;
  grid-column-gap: 30px;
  align-items: end;
}
@media (max-width: 860px) {
  .search-area .search-form {
    grid-template-columns: 1fr;
    grid-row-gap: 16px;
    justify-items: stretch;
  }
}
.search-area .search-form .field {
  display: flex;
  flex-direction: column;
}
.search-area .search-form .field .field-label {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-color-1);
}
.search-area .search-form .field .select-wrap {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
  height: 46px;
  display: flex;
  align-items: center;
  padding: 0 16px;
}
.search-area .search-form .field .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 100%;
  background: transparent;
  font-size: 15px;
  outline: none;
  padding-right: 24px;
  color: var(--text-color-1);
}
.search-area .search-form .field .select-wrap .caret {
  position: absolute;
  right: 12px;
  pointer-events: none;
  color: var(--primary-color);
  font-size: 18px;
  transform: translateY(-1px);
}
.search-area .search-form .actions {
  display: flex;
  justify-content: center;
}
.search-area .search-form .actions .btn-search {
  background: var(--primary-color);
  border: none;
  color: var(--text-color-2);
  padding: 12px 36px;
  border-radius: 28px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s ease;
}
.search-area .search-form .actions .btn-search:hover {
  background: var(--primary-color);
}

.results {
  margin-top: 10px;
}
.results .results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: none;
}
.results .results-header .results-title {
  font-size: 24px;
  color: var(--text-color-1);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.results .results-header .spacer {
  flex: 1;
}
.results .list {
  border-top: 1px solid var(--secondary-color);
  list-style: none;
  padding: 0;
  margin: 0;
}
.results .result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-bottom: 1px solid var(--secondary-color);
}
.results .result .result-left {
  max-width: 75%;
}
.results .result .result-left .store-name {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 700;
}
.results .result .result-left .address {
  margin: 0;
  font-size: 14px;
  color: #333;
  opacity: 0.9;
}
.results .result .result-right {
  display: none;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  width: 25%;
}
.results .result .result-right .btn-group {
  display: flex;
  gap: 8px;
  align-items: center;
}
.results .result .result-right .btn-group .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 120px;
  border-radius: 22px;
  padding: 8px 14px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.results .result .result-right .btn-group .map {
  background: var(--primary-color);
  color: white;
  opacity: 0.95;
}
.results .result .result-right .btn-group .list {
  background: var(--primary-color);
  color: white;
}
.results .result .result-right .btn-group .icon {
  font-size: 14px;
}
@media (max-width: 860px) {
  .results .result {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .results .result .result-left {
    width: 100%;
    max-width: none;
  }
  .results .result .result-right {
    width: 100%;
    justify-content: flex-start;
  }
}

.ws-section {
  padding: 3.5rem 0;
  z-index: 1;
  position: relative;
}

.ws-card {
  background: rgba(var(--text-color-2), 0.92);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 6px 20px rgba(12, 18, 26, 0.06);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.video-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 700px;
}

.video-el {
  width: 100%;
  height: 100%;
  display: block;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-color-1);
}

.lead-muted {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}
.step .num {
  min-width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(var(--primary-color), 0.1);
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  color: var(--primary-color);
}
.step .text {
  font-size: 0.975rem;
  color: var(--text-color-1);
}

.cta {
  margin-top: 1.1rem;
}

@media (max-width: 767.98px) {
  .video-wrap {
    height: 400px;
  }
}/*# sourceMappingURL=index.css.map */