/* @import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap"); */

:root {
  --theme-black: #000000;
  --fade-black: #0a0a0a;
  --bs-white: #ffffff;
  --theme-white: #f5f5f5;
  --theme-fade-white: #fbfbfb;
  --theme-color: #01204e;
  --theme-green-color: #2b3935;
  --theme-secondary-color: #2dc8a8;
  --theme-light-secondary-color: #fb9b4e;
  --theme-tertiary: #ffbc5f;
  --theme-red: #fe5d61;
  --ast-global-color-1: #2dc8a8;
  --ast-global-color-0: #fe5d61;
  --transition500: all 0.5s ease-in-out;
  --manrope: "Manrope", sans-serif;
  --theme-font: var(--manrope);
  --font16: clamp(14px, 3vw, 16px);
  --font18: clamp(14px, 1.8vw, 18px);
  --font21: clamp(16px, 1.25vw, 21px);
  --font22: clamp(16px, 1.38vw, 22px);
  --font25: clamp(18px, 1.5vw, 25px);
  --font28: clamp(20px, 1.6vw, 28px);
  --font30: clamp(22px, 1.7vw, 30px);
  --font33: clamp(24px, 1.9vw, 33px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--theme-font);
  font-weight: 400;
  overflow-x: hidden;
  color: var(--theme-black);
}

a {
  display: inline-block;
  color: var(--theme-black);
  text-decoration: none;
  transition: var(--transition500);
}

a:focus {
  outline: unset;
}

b,
strong {
  font-weight: 800;
}

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

h1 {
  font-size: clamp(30px, 3.8vw, 71px);
}

h2 {
  font-size: clamp(26px, 3vw, 50px);
  margin-bottom: 0.5em;
  line-height: 1.2;
}

h3 {
  font-size: clamp(22px, 1.9vw, 36px);
  margin-bottom: 0.5em;
}

h4 {
  font-size: clamp(20px, 1.7vw, 30px);
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: clamp(18px, 1.3vw, 23px);
}

p {
  font-size: clamp(14px, 2vw, 16px);
  margin-bottom: 1em;
  line-height: 1.7;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  color: var(--theme-black);
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-1 {
  opacity: 1 !important;
}

.disable_scroll {
  overflow: hidden;
}

.common_sub_section_heading h2 {
  font-size: 48px;
  color: var(--theme-black);
}

/* .common_btn_main {
    border: 2px solid var(--theme-black);
    border-radius: 8px;
    font-size: 18px;
    padding: 0 32px;
    line-height: 47px;
    color: var(--theme-black);
    transition: all 0.5s;
} */

.common_btn {
  position: relative;
  font-size: var(--font18);
  line-height: 50px;
  color: #ffffff;
  padding: 0 25px;
  text-transform: capitalize;
  transition: all 0.5s ease-in-out;
  border-radius: 6px;
  overflow: hidden;
  background-color: var(--theme-red);
  z-index: 1;
  font-weight: 500;
}

.common_btn:focus {
  color: var(--bs-white);
}

.btn_animation span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #2dc8a8;
  transition: width 0.35s ease-in-out, height 0.35s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.btn_animation:hover {
  color: #ffffff;
}

.btn_animation:hover span {
  width: 500%;
  height: 562.5px;
}

.btn_animation:active {
  background-color: #473c82;
}

.common_btn.theme_secondary_btn {
  background: var(--theme-white);
  color: var(--theme-color);
  border: 2px solid #2b3935;
  transition: color 0.3s ease-in-out;
}

.common_btn.theme_secondary_btn:hover {
  color: var(--bs-white);
  border-color: var(--theme-secondary-color);
}

.common_btn.btn_white {
  border: 1px solid var(--theme-white);
  background-color: transparent;
}

.common_btn.btn_white:hover {
  background-color: var(--theme-white);
}

.small_container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.common_bg {
  background-color: var(--theme-fade-white);
}

.common_bg_dark {
  background-color: #070707;
}

.common_bg_image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.common_bg_image2 {
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.common_icon_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
  color: var(--theme-white);
  font-family: var(--theme-font);
  transition: var(--transition500);
}

.common_icon_btn :is(svg, img) {
  max-width: 24px;
  max-height: 24px;
  object-fit: scale-down;
}

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

.common_icon_btn.without_bg_btn {
  background: transparent;
  color: var(--theme-color);
  border: none;
  padding: 0;
  line-height: 30px;
}

.common_icon_btn.without_bg_btn svg path {
  stroke: var(--theme-color);
}



.sticky_area {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

/* TITTLE AND CONTENT AREA START  */

.common_title_area h2 {
  font-size: clamp(28px, 2.8vw, 50px);
  margin-bottom: 0.8em;
  line-height: 1.2;
  font-family: var(--theme-font);
  text-transform: capitalize;
  font-weight: 800;
}

/* .common_title_area :is(h2, h3, h4) :is(b, strong) {
  color: var(--theme-color);
} */

.common_title_area :is(h5, h6) {
  font-size: 27px;
  color: #060606;
  font-weight: 500;
  margin-bottom: 1em;
  font-family: var(--theme-font);
}

.common_title_area h6 {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--theme-color);
}

.common_title_area p {
  font-size: clamp(14px, 1.5vw, 25px);
  margin-bottom: 1em;
  font-weight: 500;
}

.common_title_area>*:last-child {
  margin-bottom: 0;
}



.common_padding {
  padding-top: clamp(50px, 5.5vw, 100px);
  padding-bottom: clamp(50px, 5.5vw, 100px);
}

.common_title_area img {
  width: 100%;
  margin-bottom: 35px;
  aspect-ratio: 3 / 1.5;
  object-fit: cover;
}

.common_title_area ul {
  margin-bottom: 30px;
}

.common_title_area ul li {
  font-size: var(--font22);
  color: #1e1e1e;
  font-weight: 500;
  margin-bottom: 10px;
  padding-left: 50px;
  position: relative;
  margin-bottom: clamp(25px, 2.61vw, 50px);
}

.common_title_area ul li:last-child {
  margin-bottom: 0;
}

.common_title_area ul li::before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("../img/check_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 3px;
  left: 2px;
}

.common_title_area :is(p, span, li, h2, h3, h4) a {
  color: var(--theme-color);
}

.common_mb {
  margin-bottom: clamp(40px, 4.5vw, 80px);
}

.common_mt {
  margin-top: clamp(40px, 4.5vw, 80px);
}

.cl_white :is(h1, h2, h3, h4) {
  color: var(--theme-white) !important;
}

.cl_white :is(h5, h6) {
  color: var(--theme-white) !important;
}

.cl_white p {
  color: var(--theme-white) !important;
}

.cl_white ul {
  color: var(--theme-white) !important;
}

.cl_white li,
.cl_white li p {
  color: var(--theme-white) !important;
}

.cl_blue :is(h2, h3, h4) {
  color: var(--theme-tertiary);
}

.common_bg_dark :is(h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  li,
  li p,
  span,
  a,
  button,
  button span,
  button i,
  button svg,
  button path) {
  color: var(--theme-white);
}

.hide_before::before {
  display: none !important;
}

.hide_after::after {
  display: none !important;
}

.unset_max_width :is(h2, h3, h4, h5, h6, p) {
  max-width: unset !important;
}

.common_design_bg {
  position: relative;
}

.common_design_bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/vector.svg") no-repeat center;
  background-size: cover;
}

/* TITTLE AND CONTENT AREA END  */

/* ============ HEADER =========== */

.header_learn_btn_area {
  padding: 14px 60px;
  background: linear-gradient(180deg, #bd0b09 0%, #d82220 100%);
  clip-path: polygon(5% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.header_learn_btn_area>* {
  color: var(--theme-white);
}

.header_learn_btn_area a {
  transition: all 0.5s ease-in-out;
}

.header_learn_btn_area a:hover {
  text-decoration: underline;
}

.header_learn_btn_area a svg {
  flex: 0 0 auto;
}

.upper_header_nav {
  padding-left: 12%;
}

.upper_header_nav ul {
  display: flex;
}

.upper_header_nav ul li {
  padding-right: 40px;
  position: relative;
}

.upper_header_nav ul li:last-child {
  padding-right: 0;
}

.upper_header_nav ul li a {
  color: #fff;
  transition: all 0.5s;
  font-family: var(--theme-font);
  font-weight: 600;
}

.upper_header_nav ul li a:hover {
  color: var(--theme-color);
}

.upper_header_nav ul li::after {
  content: "|";
  position: absolute;
  top: 0;
  right: 20px;
  color: #535353;
  font-size: 18px;
}

.upper_header_nav ul li:last-child:after {
  display: none;
}

.up_contact_info_area {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
}

.up_contact_info_area :is(svg, img) {
  width: 20px;
  height: 20px;
  fill: var(--theme-secondary-color);
}

.up_contact_info_area {
  font-family: var(--theme-font);
  transition: var(--transition500);
}

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

.up_contact_info_area:not(:last-child) {
  margin-right: 40px;
}

.mobile_header_menu {
  display: none;
}

.header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0 auto;
}

.header_unique_btn:hover {
  color: var(--theme-tertiary);
}

.logo-area a img {
  width: 100%;
  max-width: 230px;
  height: 92px;
  object-fit: scale-down;
}

.nav-area-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.nav-ul {
  display: flex;
  flex-wrap: wrap;
}

.mobile_header_menu {
  display: none;
}

.nav-ul>li {
  margin-right: 50px;
  position: relative;
}

/* .nav-ul>li:last-child {
    margin-right: 0;
} */

.nav-ul li a {
  padding: 10px 0;
  font-size: 16px;
  color: var(--theme-white);
  letter-spacing: 1px;
  transition: all 0.5s;
  font-weight: 600;
  font-family: var(--theme-font);
  text-transform: uppercase;
}

.dropdown-arrow i {
  font-size: 14px;
  color: var(--theme-white);
  transition: all 0.2s ease-in-out;
}

.mobile-nav .nav-ul .dropdown-nav a::after {
  right: 10%;
}

.nav-ul li a:hover {
  color: var(--theme-red);
}

.mobile-nav .nav-ul>li>a:hover {
  color: var(--theme-red);
}

.mobile-nav .nav-ul>li>a.active {
  color: var(--theme-red);
}

.contact_btn {
  position: relative;
  display: flex;
  justify-content: end;
  flex: 0 0 auto;
  align-items: center;
}

.search_icon_area {
  margin-right: 30px;
}

.search_icon_area i {
  color: var(--theme-white);
  font-size: 22px;
  padding-top: 5px;
}

.nav-ul>li:hover .dropdown-arrow i {
  transform: rotate(180deg);
}

.nav-ul>li:hover ul {
  visibility: visible;
  opacity: 1;
  top: 45px;
}

.nav-ul li a:hover .dropdown-arrow i {
  color: var(--theme-red);
}

.nav-ul li ul {
  background-color: #ffffff;
  position: absolute;
  width: 220px;
  top: 60px;
  visibility: hidden;
  opacity: 0;
  z-index: 9999999;
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  margin-left: 0;
}

.nav-ul li ul li a {
  display: block;
  padding: 12px 15px;
  transition: all 0.5s;
  font-weight: 500;
  font-size: 15px;
  color: #000;
  transition: all 0.5s;
  text-transform: capitalize;
}

.nav-ul li ul li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-ul li ul li ul {
  background-color: #ffffff;
  position: absolute;
  width: 200px;
  top: 0px;
  right: -100%;
  visibility: hidden;
  opacity: 0;
  z-index: 9999999;
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  margin-left: 0;
}

.nav-ul li ul>li:hover {
  visibility: visible;
  opacity: 1;
  top: 10px;
}

.dropdown-arrow {
  margin-left: 5px;
}

.menu-bar {
  display: none;
  padding: 0 10px;
}

.menu-bar i {
  font-size: 25px;
  color: var(--bs-white);
}

.nav-header {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  transition: var(--transition500);
  background: linear-gradient(180deg, #0000006b 30%, #ffffff00 90%);
}

.header_fixed {
  box-shadow: 0 0 25px #0303031c;
  background: #00000062;
}

.header_fixed:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
  backdrop-filter: blur(8px);
  z-index: -1;
}

.mobile-nav {
  display: none;
}

.nav-ul>li>a.active {
  color: var(--theme-red);
}

.black-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0000008e;
  z-index: 99;
  display: none;
}

.header_offset {
  background-color: transparent;
}

.current-menu-item>a,
.current_page_item>a {
  color: var(--theme-red) !important;
}

/* COMMON HEADING AREA  */
.common_banner_area_main {
  padding-top: clamp(130px, 17vw, 300px);
  padding-bottom: clamp(130px, 20vw, 350px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-image: fill 0 radial-gradient(circle, rgba(0, 0, 0, 0.31) 0%, rgba(13, 18, 17, 0.52) 79%);
  position: relative;
}

.common_banner_context>*:last-child {
  margin-bottom: 0;
}

.common_banner_area_main:not(:has(.trusted_text_area)) .mouse_icon_animation {
  bottom: clamp(20px, 2.6vw, 50px);
}

.common_banner_context h1 {
  margin: 0 0 15px;
  margin-bottom: 0.2em;
  font-weight: 900;
  font-family: var(--theme-font);
}

.common_banner_context :is(h3, h4) {
  font-family: var(--theme-font);
  line-height: 1.5;
}



.common_banner_context p {
  margin: 0 auto;
  margin-bottom: 1.5em;
  font-size: var(--font28);
}

.mobile_nav_btn_wrapper {
  display: none;
}


.home_banner_area_main {
  position: relative;
  background-color: transparent;

}


.banner_video_image_area {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.banner_video_image_area video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mouse_icon_animation {
  width: 26px;
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
}


.animated_dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 30px;
  font-weight: bold;
  height: 30px;
  /* show 2 dots (30px height each) */
  overflow: hidden;
  position: relative;
  color: var(--theme-secondary-color);
}

.dots_wrap {
  display: flex;
  flex-direction: column;
  animation: scrollUp 1.5s linear infinite;
  gap: 4px;

}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--theme-secondary-color);
  /* one dot height */
  line-height: 10px;
  text-align: center;
  opacity: 0.7;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-15px);
  }

  /* move up by 1 dot height */
}


.trusted_text_area {
  /* position: absolute;
  bottom: 0;
  left: 0;
  right: 0; */
  position: relative;
  padding-block: 20px;
  padding-inline: 12px;
  font-size: var(--font18);
  background-color: var(--bs-white);
  text-align: center;
  color: #5b5b5b;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.trusted_text_area p {
  margin-bottom: 0;
}

.trusted_text_area:after {
  content: " ";
  position: absolute;
  left: 50%;
  bottom: -14px;
  border-top: none;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 15px solid #ffffff;
  filter: drop-shadow(0px 10px 8px rgba(0, 0, 0, 0.15));
  transform: translateX(-50%);
}

.mouse_icon {
  width: 26px;
}

.double_btn_wrapper {
  gap: 20px;
  flex-wrap: wrap;
}

.banner-area p {
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: 49px;
  font-size: 18px;
  position: relative;
}

.common_banner_context ul {
  margin-bottom: 50px;
}

.common_banner_context ul li {
  font-size: 30px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 25px;
  padding-left: 50px;
  position: relative;
  font-style: italic;
}

.common_banner_context ul li::before {
  content: "";
  width: 35px;
  height: 46px;
  background-color: var(--theme-color);
  background-size: contain;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* =============================
        Information Ponits
================================ */
.information_points_wrapper {
  background-color: #f5f5f5;
}

.information_points_area {
  padding-block: 40px;
  background-color: #f5f5f5;
}

/* .ql_points_area ul {
  list-style: disc;
  padding-left: 2em;
  display: flex;
  gap: 15px;
} */
.ql_ponits_content {
  position: relative;
  padding-left: 30px;
}

.ql_ponits_content p {
  margin-bottom: 0;
  font-size: var(--font22);
  font-weight: 600;
  line-height: 1.2;
}

.ql_ponits_content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--theme-secondary-color);
}

/* .ql_points_area ul li:not(:last-child) {
  flex-grow: 1;
}

.ql_points_area ul li::marker {
  color: var(--theme-secondary-color);
} */
.qlPointSwiper:not(:has(.swiper-pagination-lock)) {
  padding-bottom: 50px;
}

.information_points_area:not(:has(.swiper-pagination-lock)) {
  padding-bottom: 20px;
}

/* =============================
    our_product_selection_wrapper
================================ */
/* .common_title_area h2 strong {
  position: relative;
  z-index: 1;
} */

/* .common_title_area h2 strong::after {
  content: "";
  position: absolute;
  height: 32%;
  margin-top: auto;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff5f6d, #ffc371, #36d1dc);
  background-size: 300% 100%;
  animation: moveGradient 6s ease infinite;
  z-index: -1;
  border-radius: 5px;
}

@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
} */
.our_product_selection_wrapper .empty_circle {
  width: 30%;
  inset: unset;
  bottom: 5%;
  right: -10%;
}

.our_product_selection_wrapper {

  overflow: hidden;
}

.our_product_selection_area {
  position: relative;
  z-index: 1;
}

.our_product_selection_area::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/bg_design/bg_dotted_circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
  animation: beat 3s infinite alternate;
  transform-origin: center;
  filter: brightness(0.93) saturate(3.6);
}

@keyframes beat {
  to {
    transform: scale(1.2);
  }
}


.product_selection_card h3 {
  font-size: var(--font22);
  text-transform: uppercase;
  transition: var(--transition500);
}

.product_selection_card p {
  font-size: var(--font21);
  transition: var(--transition500);
}

.product_selection_card {
  padding: 20px 25px 25px;
  box-shadow: 0 12px 21px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--bs-white);
  transition: var(--transition500);
  border-radius: 15px;
}

.product_selection_card:hover {
  box-shadow: 0px 12px 13.5px rgba(0, 0, 0, 0.23);
}

.product_selection_content img {
  width: 65px;
  height: 70px;
  margin-bottom: 25px;
  transition: var(--transition500);
}

.product_selection_card:hover .product_selection_content img {
  transform: scale(1.05) rotate(-3deg);
}


.redirect_btn_area {
  margin-top: auto;
  margin-left: auto;
  text-align: end;
}

.redirect_btn_area img {
  width: 25px;
  height: 25px;
  object-fit: scale-down;
  transition: var(--transition500);
}

.redirect_btn_area svg {
  width: 24px;
  height: 24px;
  fill: var(--theme-secondary-color);
  transition: var(--transition500);
}

.redirect_btn_area span {
  display: inline-block;
  transition: var(--transition500);
}

.product_selection_card:hover .redirect_btn_area span {
  transform: translate(5px, -5px);
}

.redirect_btn_area a:hover {
  color: var(--theme-secondary-color);
}

.hover_animated_card {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hover_animated_card::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  margin: auto;
  margin-top: 35px;
  width: 0px;
  height: 0px;
  background-color: var(--theme-secondary-color);
  border-radius: 50px 15px 0px 15px;
  transition: all 0.5s;
  z-index: -1;
}

.hover_animated_card:hover::before {
  margin-top: 0px;
  background-color: var(--theme-secondary-color);
  width: 100%;
  height: 100%;
  border-radius: 15px;
  transition: all 0.5s;
}

.hover_animated_card:hover svg {
  fill: var(--bs-white);
}

.hover_animated_card:hover * {
  color: var(--bs-white);
}

.hover_animated_card:hover img {
  filter: invert(1) brightness(3.5) hue-rotate(226deg);
}

/* =============================
    most_popular_products_wrapper
================================ */
.most_popular_products_wrapper .ring_circle {
  left: -20%;
}

.kd_team_grid_item {
  position: relative;
  height: clamp(250px, 29vw, 450px);
  height: 100%;
}

.kd_team_grid_item a {
  width: 100%;
  border-radius: 19px;
  position: relative;
  transition: var(--transition500);
  overflow: hidden;
  height: 100%;
  border: 1px solid #b9b9b9;
  padding: 20px 25px 30px;
  background-color: var(--bs-white);
}

/* .kd_team_grid_item a img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
  transition: var(--transition500);
} */
.product_showcase_image {
  width: 100%;
  height: clamp(200px, 21.5vw, 400px);
  object-fit: scale-down;
  transition: var(--transition500);
}

.kd_team_member_details {
  width: 100%;
  position: relative;
  /* position: absolute;
  left: 0;
  right: 0;
  top: 0; */
  /* display: flex;
  justify-content: end;
  flex-direction: column; */
  transition: var(--transition500);
  text-align: center;
  z-index: 2;
}

.kd_team_grid_item a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(0deg, #2b3935e8 19%, #ffffff00 60%);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition500);
  z-index: 1;
}

.kd_team_member_details h3 {
  font-size: var(--font25);
  font-weight: 700;
  transition: var(--transition500);
}

.product_detailed_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition500);
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
}

/* .kd_team_grid_item a:hover img {
  transform: scale(1.2);
} */
.kd_team_grid_item a:hover::before {
  visibility: visible;
  opacity: 1;
}

.kd_team_grid_item a:hover .product_showcase_image {
  visibility: hidden;
  opacity: 0;
}

.kd_team_grid_item a:hover .product_showcase_image.secondary_image_not_available {
  visibility: visible;
  opacity: 1;
}

.kd_team_grid_item a:hover .product_detailed_image {
  visibility: visible;
  opacity: 1;
}

.kd_team_grid_item a:hover .kd_team_member_details h3 {
  color: var(--theme-white);
}

/* =============================
        why_choose_us
================================ */
.why_choose_image_area {
  height: 100%;
}

.why_choose_image_area video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why_hoose_content_area {
  background-color: var(--theme-green-color);
  height: 100%;
  padding-inline: clamp(20px, 7vw, 100px);
  align-content: center;
}

.why_hoose_content_area .common_title_area ul li :is(b, strong) {
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.5em;
}

/* =============================
        ql_resources_wrapper
================================ */
.ql_resources_wrapper {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.ql_resources_card_grid_parent {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(6, 1fr);
  column-gap: 60px;
  row-gap: 24px;
}

.ql_resources_card_wrapper1 {
  grid-area: 1 / 1 / 7 / 3;
}

.ql_resources_card_wrapper2 {
  grid-area: 1 / 3 / 4 / 6;
}

.ql_resources_card_wrapper3 {
  grid-area: 4 / 3 / 7 / 6;
}

.big_rs_card .rs_image_area {
  width: 100%;
  /* height: clamp(250px, 29vw, 450px); */
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
}


.rs_image_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition500);
}

.pdf_preview {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition500);
}

.big_rs_card:hover .pdf_preview {
  visibility: visible;
  opacity: 1;

}

.small_rs_card .rs_image_area:hover img {
  transform: scale(1.2);
}

.small_rs_card .rs_image_area {
  width: 100%;
  /* height: clamp(270px, 22vw, 320px); */
  height: 100%;
  max-width: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.small_rs_card .rs_image_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.big_rs_card,
.small_rs_card {
  background-color: var(--bs-white);
  border-radius: 16px;
  padding: 15px 15px 20px;
}

.big_rs_card {
  height: 100%;
  display: flex;
  flex-direction: column;

}

.big_rs_card .redirect_btn_area svg {
  fill: transparent;
}

.small_rs_card .rs_content_area {
  padding-top: 40px;
  padding-inline: 12px 25px;
}

.small_card_total_content {
  padding-bottom: 20px;
}

.rs_content_area a:hover {
  color: var(--theme-secondary-color);
}

:where(.big_rs_card, .small_rs_card) .rs_content_area h3 {
  font-size: var(--font33);
  font-weight: 700;
  margin-bottom: 25px;
}

:where(.big_rs_card, .small_rs_card) .rs_content_area p {
  font-size: var(--font25);
  margin-bottom: 15px;
}

.rs_redirect_btn_area a {
  display: flex;
  align-items: center;
  justify-content: end;
  column-gap: 10px;
  font-weight: 600;
}

.rs_redirect_btn_area a span {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: #bfbfbf;
}

.big_rs_card .rs_content_area {
  padding-inline: 10px;
  /* padding-bottom: 15px; */
}

.small_rs_card .small_card_total_content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* =============================
        industries_wrapper
================================ */
.industries_wrapper {
  position: relative;
  overflow: hidden;
}

.swiper-slide:has(.industry_formation_area) {
  border-radius: 26px;
  overflow: hidden;
  height: unset;
}

.industriesSwiper {
  padding-bottom: 60px;
}

.industriesSwiper .swiper-slide {
  transition: var(--transition500);
}

.industriesSwiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.6;
}

.industry_formation_area {
  position: relative;
  padding: 200px 60px;
  height: 100%;
  border-image: fill 0 linear-gradient(0deg, #00000088 100%, #ffffff00 0%);
}

.industry_formation_area .industry_image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.industry_content h3 {
  font-size: clamp(24px, 2.7vw, 48px);
}

.industry_content p {
  font-size: var(--font25);
  line-height: 1.5;
}

.industries_swiper_button {
  width: 51px;
  height: 51px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--theme-green-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: var(--transition500);
}

.industries_swiper_button::after {
  color: var(--bs-white);
  font-size: var(--font18);
}

.industries_swiper_button_next {
  right: 10%;
}

.industries_swiper_button_prev {
  left: 10%;
}

.swiper-pagination-bullet {
  background-color: #636363;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: transparent;
  border: 1px solid var(--theme-color);
  background-color: var(--theme-color);
}

.bg_design_img {
  position: absolute;
  z-index: 0;
}

.empty_circle {
  top: -40%;
  right: -30%;
  animation: rotate 10s linear infinite;
  filter: brightness(1) saturate(2.8) contrast(0.9);
}

.ring_circle {
  top: 40%;
  left: -30%;
  filter: brightness(0.9) saturate(1.5) contrast(10);
}

.ring_circle {
  top: 50%;
  left: -30%;
  height: 90%;
  transform: translateY(-50%);
}

.empty_circle2 {
  top: 50%;
  left: 5%;
  height: 70%;
  transform: translateY(-50%);
  filter: brightness(1.1) saturate(1.5) contrast(0.8);
}

.float_circle {
  animation: wave 8s infinite ease-in-out;
}

.small_circle {
  top: 80px;
  left: 13%;
  width: 43px;
  animation-delay: 0s;
  filter: brightness(0.95) saturate(2.7);
}

.small_circle2 {
  top: 110px;
  left: calc(13% + 60px);
  width: 23px;
  animation-delay: 3s;
  filter: brightness(0.95) saturate(2.7);
}

@keyframes wave {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* =============================
        ql_cta_wrapper
================================ */
.ql_cta_wrapper {
  /* background-image: url("../img/cta_bg.jpg");
  background-size: cover;
  background-position: center; */
  border-image: fill 0 linear-gradient(0deg, #273733e7 100%, #ffffff00 0%);
  content-visibility: inherit !important;
}

/* =============================
        FOOTER AREA 
================================ */

.footer_wrapper {
  position: relative;
}

.footer_wrapper {
  background-repeat: no-repeat;
  background-size: 25%;
  background-position: right bottom 26%;
}

.common_padding.footer_wrapper {
  padding-bottom: 0;
}

.footer_logo_area_info p {
  font-size: var(--font18);
}

.footer_area {
  border-bottom: 1px solid #ffffff80;
  padding-bottom: 75px;
}

.footer_area .logo-area img {
  max-width: 260px;
  max-height: 60px;
}

/* .footer_area .logo-area p {
    color: #FFFFFF80;
} */

.footer_top_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 70px;
}

.footer_menu_area {
  display: flex;
  flex-direction: column;
  height: 100%;
  row-gap: 40px;
}

p.special_info {
  font-size: var(--font25);
  font-weight: 600;
}

.navigation_area> :is(h3, h4) {
  margin-bottom: 25px;
  font-family: var(--theme-font);
  font-size: var(--font25);
}

.right_divider {
  border-right: 1px solid #00000012;
}

.navigation_area ul li a {
  font-size: clamp(16px, 1.25vw, 22px);
  transition: all 0.5s;
  font-weight: 500;
}

.navigation_area ul li a:hover {
  color: var(--theme-secondary-color);
}

.navigation_area ul li a span {
  color: #fff;
}

.navigation_area ul li a:hover span {
  color: #fff;
}

.navigation_area ul li:not(:last-child) {
  margin-bottom: 15px;
}

.navigation_area p {
  font-size: var(--font18);
}

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

.get_in_touch ul li img {
  flex: 0 0 auto;
  margin-right: 15px;
  padding-top: 5px;
}

.get_in_touch li:last-child {
  margin-bottom: 0;
}

.social_accounts_area ul {
  display: flex;
  justify-content: end;
  column-gap: 20px;
  row-gap: 20px;
}

.social_accounts_area i {
  color: var(--theme-secondary-color);
  font-size: var(--font25);
  border: 2px solid var(--theme-secondary-color);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.5s;
}

.social_accounts_area a:hover i {
  background-color: var(--theme-secondary-color);
  color: #ffffff;
}

/* .social_accounts_area ul li:has(.fa-youtube) i {
  border-color: var(--theme-red);
  color: var(--theme-red);
}

.social_accounts_area ul li:has(.fa-youtube) a:hover i {
  background-color: var(--theme-red);
  color: #ffffff;
}

.social_accounts_area ul li:has(.fa-x-twitter) i {
  border-color: #fe9b65;
  color: #fe9b65;
}

.social_accounts_area ul li:has(.fa-x-twitter) a:hover i {
  background-color: #fe9b65;
  color: #ffffff;
}

.social_accounts_area ul li:has(.fa-instagram) i {
  border-color: #b3c97c;
  color: #b3c97c;
}

.social_accounts_area ul li:has(.fa-instagram) a:hover i {
  background-color: #b3c97c;
  color: #ffffff;
} */

.lower_footer_wrapper {
  padding: 95px 0 70px;
}

.lower-footer-area {
  display: flex;
  justify-content: space-between;
}

.footer-logo-area a {
  max-width: 273px;
  padding-bottom: 30px;
}

.footer-logo-area a img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.newsletter_form {
  border: 1px solid #ffffff;
  border-radius: 25px;
  padding: 3px;
  max-width: 410px;
}

.newsletter_form input {
  width: 100%;
  flex: 1 0 0;
  background-color: transparent;
  border: none;
  padding: 0 10px;
  outline: none;
  color: #fff;
}

/* button.common_btn {
  text-transform: capitalize;
  color: #1e1e1e;
  font-weight: 400;
} */

.social-ul {
  display: flex;
}

.navigation_area .follow_area .social-ul li {
  margin-bottom: 0;
}

.social-ul li:not(:last-child) {
  margin-right: 27px;
}

.ql_ft_contact_info_area ul li {
  margin-bottom: 40px;
}

.footer_wrapper .ql_ft_contact_info_area ul li:last-child {
  margin-bottom: 0;
}

.ql_ft_contact_info_area ul li a {
  font-size: var(--font22);
  font-weight: 600;
  transition: all 0.5s;
}

.ql_ft_contact_info_area ul li a:not(:has(.ql_address_info)):hover {
  color: var(--theme-secondary-color);
}

.ql_ft_contact_info_area ul li a:has(.ql_address_info) {
  cursor: default;
}

.footer_wrapper .ql_ft_contact_info_area ul li a i.fa-envelope {
  position: relative;
  top: 3px;
}

.ql_ft_contact_info_area ul li a i {
  color: var(--theme-secondary-color);
  font-size: var(--font25);
  margin-right: 15px;
  /* background: linear-gradient(355deg, #ff5f6d, #fdbd5c, #2dc8a8de);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}

.ql_address_info,
.ql_other_info {
  display: block;
  font-weight: 500;
  padding-left: 35px;
  margin-top: 10px;
}

.social-ul li a {
  width: 33px;
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--theme-white);
  background-color: #fff;
  border-radius: 100%;
  transition: all 0.5s;
}

.social-ul li a:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.social-ul li a i {
  font-size: 16px;
  color: var(--fade-black);
  transition: all 0.5s;
}

.social-ul li a:hover i {
  color: var(--theme-white);
}

.follow_area {
  gap: 20px;
}

.follow_area>p {
  font-size: 16px;
}

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

.sitemap-ul {
  display: flex;
}

.sitemap-ul li {
  padding-right: 40px;
  position: relative;
}

.sitemap-ul li:last-child {
  padding-right: 0;
}

.sitemap-ul li a {
  color: #fff;
  transition: all 0.5s;
  font-family: var(--theme-font);
  font-weight: 600;
  color: #ffffff80;
}

.sitemap-ul li a:hover {
  color: var(--theme-color);
}

.sitemap-ul li::after {
  content: "|";
  position: absolute;
  top: 2px;
  right: 20px;
  color: #535353;
  font-size: 20px;
}

.sitemap-ul li:last-child:after {
  display: none;
}

.bottom_area_name {
  background-color: #f5f5f5;
  font-size: var(--font16);
  padding: 30px 0;
  text-align: center;
}

.bottom_area_name .copyright p {
  margin-bottom: 0;
  font-family: var(--theme-font);
  font-weight: 600;
  margin-bottom: 0;
}

.bottom_area_name p a {
  color: var(--theme-secondary-color);
}

.term_links {
  display: flex;
  align-items: center;
}

.term_links p {
  font-size: clamp(16px, 1.25vw, 22px);
  margin-bottom: 0;
}

.term_links p a {
  font-size: inherit;
  font-weight: 500;
  padding: 0 15px;
}

.term_links p a:last-child {
  padding-right: 0;
}

.term_links p a:hover {
  color: var(--theme-secondary-color);
}





/* =============================
        SWIPER CSS
================================ */

.serviceSwiper,
.electricalSwiper,
.pricingSwiper {
  padding-bottom: 80px;
}



.itech_products_slider_wrapper {
  position: relative;
}

/* .itech_swiper_button.swiper-button-disabled {
    opacity: 0.5;
} */

.itech_swiper_button {
  width: 51px;
  height: 51px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--theme-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition500);
}

.hover_button_display:hover .itech_swiper_button {
  visibility: visible;
  opacity: 1;
}

.itech_products_card h3 {
  color: #fff;
}

.itech_swiper_button_next {
  right: 0;
}

.itech_swiper_button_prev {
  left: 0;
}

.itech_swiper_button svg {
  fill: #fff;
}

.itech_productSwiper {
  padding: 50px 0 50px;
  max-width: calc(100% - 130px);
  position: unset;
}



/* ABOUT US PAGE STYLES */
/* ABOUT US PAGE STYLES */
/* ABOUT US PAGE STYLES */
.our_mission_wrapper {
  background-color: var(--theme-fade-white);
}

.has_bg_designs {
  position: relative;
  overflow: hidden;
}

.has_bg_designs>:is(.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl)>div {
  position: relative;
  z-index: 1;
}

.mission_text {
  padding-left: clamp(20px, 6vw, 120px);
}

.mission_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2.5;
  border-radius: 16px;
}

.sm_ring_circle2 {
  top: -35%;
  right: -10%;
  height: 100%;
  transform: translateY(-40%);
  z-index: 0;
  animation-delay: 0ms;
}

.sm_empty_circle3 {
  top: 8%;
  left: -15%;
  animation: rotate 10s linear infinite;
  width: 50%;
  z-index: 0;
  filter: brightness(0.95) saturate(2.7);
}

.big_image_mission .mission_image img {
  object-position: left;
}

/* =============================
    looking_specification_wrapper
================================ */
.looking_specification_wrapper {
  background-color: #2b3935;
}

.l_ring1 {
  top: -56%;
  left: -5%;
  width: 30%;
  z-index: 0;
  animation-delay: 0ms;
}

.l_ring2 {
  top: -10%;
  left: 12%;
  transform: translateY(-10%);
  width: 40%;
  z-index: 0;
  animation-delay: 3s;
}

.l_ring3 {
  top: 13%;
  left: 70%;
  width: 10%;
  z-index: 0;
  animation-delay: 0ms;
}

.l_ring4 {
  bottom: -55%;
  right: -8%;
  width: 25%;
  z-index: 0;
  animation-delay: 3s;
}

.bold_heading_and_para ul li span {
  font-weight: 800;
  display: block;
  margin-bottom: 0.6em;
  text-transform: uppercase;
}

/* =============================
    how_we_build_wrapper
================================ */
.how_we_build_wrapper {
  padding-top: clamp(60px, 9vw, 150px);
  padding-bottom: clamp(60px, 9vw, 150px);
}

.overlapping_image_wrapper {
  position: relative;
  height: 100%;
}

.overlapping_image_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.overlapping_image_area1 {
  position: relative;
  width: 80%;
  height: 70%;
  margin-left: auto;
  min-height: clamp(200px, 35vw, 600px);
}

.overlapping_image_area1 img {
  border-radius: 18px;
}

.overlapping_image_area1::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: 75px;
  background: url('../img/about/dot_line.svg') 0 0 no-repeat;
  background-size: contain;
  width: 72px;
  height: 234px;
  z-index: -1;
}

.overlapping_image_area2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65%;
  height: 50%;
  min-height: clamp(140px, 25vw, 400px);
}

.overlapping_image_area2 img {
  border: 7px solid #fff;
  border-radius: 20px;
}

.overlapping_image_area2::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -35px;
  background: url('../img/about/dot_line.svg') 0 0 no-repeat;
  background-size: contain;
  width: 72px;
  height: 234px;
  z-index: -1;
}

.testing_image_block {
  height: auto;
  padding-right: clamp(20px, 4.5vw, 90px);
}

.testing_image_block img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 15px;
  object-fit: cover;
}

.document_box_wrapper {
  padding: clamp(30px, 3.2vw, 60px);
  border-radius: 25px;
  border: 1px solid #b9b9b9;
  background: #fff;
  display: flex;
  align-items: center;
  column-gap: 30px;
}

.document_icon {
  width: 83px;
  height: 91px;
  flex: 0 0 auto;
}

.document_icon img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}


.work_with_box p,
.work_with_box_opposite p {
  font-size: clamp(14px, 1.3vw, 25px);
}

.work_with_box,
.work_with_box_opposite {
  background: none;
  border: 0;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 4px #2b3935;
  vertical-align: middle;
  position: relative;
  width: 100%;
  min-height: 454px;
  height: 100%;
  overflow: visible;
  border-radius: 20px;
  padding: 40px 30px;
  background: #fff;
}

.work_with_box::before,
.work_with_box::after,
.work_with_box_opposite::before,
.work_with_box_opposite::after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}

.work_with_box,
.work_with_box_opposite {
  transition: color 0.25s;
}

.work_with_box::before,
.work_with_box::after,
.work_with_box_opposite::before,
.work_with_box_opposite::after {
  border: 4px solid transparent;
  width: 0;
  height: 0;
  border-radius: 20px;
}

.work_with_box::before {
  bottom: 0;
  left: 0;
}

.work_with_box::after {
  top: 0;
  right: 0;
}



.work_with_box:hover::before,
.work_with_box:hover::after {
  width: 100%;
  height: 100%;
}

.work_with_box:hover::before {
  border-bottom-color: #ffbb5f;
  border-right-color: #ffbb5f;
  transition: border-color 0.25s ease-out 0.5s, width 0.5s ease-out, height 0.5s ease-out 0.5s;
}

.work_with_box:hover::after {
  border-top-color: #ffbb5f;
  border-left-color: #ffbb5f;
  /* transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s; */
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

/* Opposite Box Animation  */

.work_with_box_opposite .orbiter_white_bg {
  top: unset;
  bottom: -40px;
}

.work_with_box_opposite .orbiter_arrow {
  top: unset;
  bottom: -11px;
}

.work_with_box_opposite::before {
  top: 0;
  left: 0;
}

.work_with_box_opposite::after {
  bottom: 0;
  right: 0;
}


.work_with_box_opposite:hover::before,
.work_with_box_opposite:hover::after {
  width: 100%;
  height: 100%;
}

.work_with_box_opposite:hover::before {
  border-top-color: #ffbb5f;
  border-right-color: #ffbb5f;
  transition: border-color 0.05s ease-out 0.49s, width 0.55s ease-out, height 0.5s ease-out 0.5s;
}

.work_with_box_opposite:hover::after {
  border-bottom-color: #ffbb5f;
  border-left-color: #ffbb5f;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.row>*:last-child .work_with_box .orbiter_white_bg {
  display: none;
}

.row>*:last-child .work_with_box .orbiter_arrow {
  display: none;
}

.row>*:last-child .work_with_box {
  box-shadow: inset 0 0 0 4px #ffbb5f;
}

.row>*:last-child .work_with_box::before,
.row>*:last-child .work_with_box::after {
  display: none;
}

.orbiter_arrow {
  position: absolute;
  width: 26px;
  height: 26px;
  background: url(../img/about/yellow_arrow.png) 0 0 no-repeat;
  background-size: cover;
  animation: orbit-rect 5s linear infinite;
  right: 0;
  top: -11px;
  z-index: 4;
}

.orbiter_white_bg {
  position: absolute;
  width: 60px;
  height: 90px;
  right: -45px;
  top: -40px;
  background-color: var(--bs-white);
}

.box_count_number {
  color: #d5d5d5;
  font-size: clamp(36px, 3.8vw, 73px);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 20px;
}

.our_promise_wrapper {
  position: relative;
  border-image: fill 0 linear-gradient(0deg, #000000a1 100%, #0000 0%);
}

.our_promise_wrapper .common_title_area {
  padding-inline: 85px;
}

.our_promise_wrapper * {
  color: var(--bs-white);
}

.our_promise_wrapper .common_title_area h3 {
  color: var(--theme-tertiary);
  font-size: var(--font33);
  margin-bottom: 1.3em;
}

.our_promise_wrapper .common_title_area p {
  font-size: var(--font28);
}

.sm_small_circle3 {
  top: 80px;
  left: clamp(60px, 10vw, 9%);
  width: 43px;
  animation-delay: 0s;
  filter: brightness(0.95) saturate(2.7);
}

.sm_small_circle4 {
  top: 75px;
  left: calc(clamp(60px, 10vw, 9%) - 50px);
  width: 23px;
  animation-delay: 3s;
  filter: brightness(0.95) saturate(2.7);
}

.sm_empty_circle6 {
  top: -25%;
  right: 0;
  animation: rotate 10s linear infinite;
  width: 45%;
  filter: brightness(0.95) saturate(2.7);
}

.sm_small_circle7 {
  top: 180px;
  left: 80%;
  width: 43px;
  animation-delay: 0s;
}

.sm_ring_circle3 {
  top: 0;
  right: -15%;
  height: 100%;
  transform: translateY(20%);
}

/* CONTACT US PAGE STYLES */
/* CONTACT US PAGE STYLES */
/* CONTACT US PAGE STYLES */

/* .contact_pg_wrapper {
  padding-top: clamp(140px, 17vw, 250px);
} */

.form_and_content_wrapper {
  padding-top: 130px;
}

.contact_form_area_main {
  padding: 26px 26px;
  box-shadow: 0px 12px 21.5px rgba(0, 0, 0, 0.22);
  background-color: #ffffff;
  border-radius: 15px;
  position: relative;
}

.contact_form_area_main::before {
  content: "";
  position: absolute;
  bottom: -6%;
  left: -6%;
  width: 72px;
  height: 234px;
  background: url('../img/about/dot_line.svg') 0 0 no-repeat;
  background-size: contain;
  z-index: -1;
}

.contact_form_area_main::after {
  content: "";
  position: absolute;
  top: -6%;
  right: -6%;
  width: 72px;
  height: 234px;
  background: url('../img/about/dot_line.svg') 0 0 no-repeat;
  background-size: contain;
  z-index: -1;
}

.contact_form_area_main :is(input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:active,
  input:-webkit-autofill:focus) {
  background-color: #49737e !important;
  color: #555 !important;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
}

.custom_left_padding {
  padding-left: 80px;
}

.contact_form_area_main :is(.input_area, .select_area) {
  margin-bottom: 24px;
  position: relative;
}

.contact_form_area_main :is(input, textarea)::placeholder {
  color: #000000;
  font-weight: 600;
}

.contact_form_area_main .input_area textarea {
  width: 100%;
  height: 130px;
  resize: none;
  outline: 0;
  padding: 10px 20px;
  font-size: var(--font18);
  font-family: var(--theme-font);
  border-radius: 6px;
  border: 1px solid #cbcbcb;
  color: var(--theme-black);
  background-color: var(--theme-fade-white);
  font-weight: 600;
}

.contact_form_area_main .input_area input {
  width: 100%;
  padding: 5px 20px;
  height: 62px;
  border: none;
  outline: 0;
  font-size: var(--font18);
  font-family: var(--theme-font);
  border-radius: 6px;
  border: 1px solid #cbcbcb;
  color: var(--theme-black);
  background-color: var(--theme-fade-white);
  font-weight: 600;
}

.contact_form_area_main .select_area select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 15px 50px 15px 23px;
  background-color: #fff;
  color: var(--theme-black);
  cursor: pointer;
  outline: 0;
  height: 62px;
  font-size: var(--font18);
  font-family: var(--theme-font);
  border-radius: 6px;
  border: 1px solid #cbcbcb;
  background-color: var(--theme-fade-white);
  font-weight: 600;

  background-image: url(../img/chevron-down.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}

.select_area {
  position: relative;
}




.submit_button_area {
  display: flex;
  align-items: center;
  position: relative;
}

.wpcf7 form.sent .wpcf7-response-output {
  color: #fff;
}

.wpcf7-not-valid-tip {
  color: #fff !important;
  font-size: 12px !important;
  background-color: #dc3232;
  padding: 2px 5px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: red !important;
  color: #fff;
  background-color: red;
  margin-left: 0;
  margin-right: 0;
}

.wpcf7 form.sent .wpcf7-response-output {
  margin-right: 0;
  margin-left: 0;
  color: #fff;
  background-color: #46b450;
}

.wpcf7-spinner {
  position: absolute !important;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  margin: 0 !important;
  z-index: 1;
}

.contact_form_heading_area {
  padding: 25px 30px;
  background-color: var(--theme-green-color);
  position: relative;
  margin-bottom: clamp(40px, 3.5vw, 60px);
  border-radius: 6px;

}

.contact_form_heading_area:after {
  content: " ";
  position: absolute;
  left: 50%;
  bottom: -24px;
  border-top: none;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  border-top: 25px solid var(--theme-green-color);
  /* filter: drop-shadow(0px 10px 8px rgba(0, 0, 0, 0.15)); */
  transform: translateX(-50%);
}

.contact_form_heading_area :is(h2, h3) {
  color: var(--bs-white);
  font-size: var(--font25);
  font-weight: 500;
  text-align: center;
  margin-bottom: 0;
}

input[type="submit"].common_btn {
  border-radius: 12px;
  filter: drop-shadow(0px 41px 16px rgba(0, 0, 0, 0.05));
  position: relative;
  font-size: var(--font18);
  line-height: 50px;
  color: #ffffff;
  padding: 0 25px;
  text-transform: capitalize;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  background-color: var(--theme-red);
  z-index: 1;
  font-weight: 500;
  border: none;
}

input[type="submit"].common_btn:hover {
  background-color: #e74749;
  color: #fff;
}

.ql_contact_pg_info_area ul li a i {
  font-size: var(--font28);
}

.ql_contact_pg_info_area ul li a {
  font-size: var(--font28);
  color: #3b2c2c;
}

.ql_contact_pg_info_area ul li a:not(:has(.ql_address_info)):hover {
  color: #3b2c2c;
}

.ql_contact_pg_info_area ul li a:has(.ql_address_info):hover .contact_info_head {
  color: #3b2c2c;
}

.ql_contact_pg_info_area ul li a:has(.ql_address_info) {
  cursor: default;
}

.ql_contact_pg_info_area ul li a:hover .contact_info_head {
  color: var(--theme-secondary-color);
}

.contact_info_head {
  font-size: var(--font33);
  font-weight: 800;
  display: inline-block;
  transition: var(--transition500);
}

/* .ql_contact_pg_info_area .ql_address_info{
  font-size: var(--font28);
} */
.ql_contact_pg_info_area ul li:not(:last-child) {
  border-bottom: 1px solid #525f5b34;
  padding-bottom: clamp(20px, 2.8vw, 40px);
  margin-bottom: clamp(20px, 2.8vw, 40px);
}

.ql_contact_pg_info_area :is(.ql_other_info, .ql_address_info) {
  margin-top: 1em;
  padding-left: clamp(35px, 3.4vw, 45px);
}

.secondary_header_logo {
  display: none;
}

body:not(:has(.common_banner_area_main)) .nav-header {
  background: #efefef;
}

body:not(:has(.common_banner_area_main)) .nav-header .main_header_logo {
  display: none;
}

body:not(:has(.common_banner_area_main)) .nav-header .secondary_header_logo {
  display: block;
}

body:not(:has(.common_banner_area_main)) .nav-header .nav-ul li>a {
  color: var(--theme-black);
}

body:not(:has(.common_banner_area_main)) .nav-header .nav-ul li a:hover {
  color: var(--theme-red);
}

body:not(:has(.common_banner_area_main)) .nav-header .nav-ul li .dropdown-arrow i {
  color: var(--theme-black);
}

body:not(:has(.common_banner_area_main)) .nav-header .nav-ul li>a:hover .dropdown-arrow i {
  color: var(--theme-red);
}

body:not(:has(.common_banner_area_main)) .nav-header .menu-bar i {
  color: var(--theme-black);
}

.contact_pg_wrapper .small_circle {
  top: 5%;
  left: 0;
  z-index: -1;
}

.contact_pg_wrapper .small_circle2 {
  top: 5%;
  left: calc(0% + 80px);
  z-index: -1;
}

.contact_pg_wrapper .ring_circle {
  top: unset;
  transform: unset;
  bottom: -45%;
  left: -13%;
  width: 50%;

}

.contact_pg_wrapper .sm_empty_circle6 {
  top: calc(-25% + 130px);
  right: -2%;
}


/* TECHNOLOGY PAGE STYLES */
/* TECHNOLOGY PAGE STYLES */
/* TECHNOLOGY PAGE STYLES */
.technology_pg_banner_area .common_banner_context>*:not(:last-child) {
  margin-bottom: 0.5em;
}

.technology_pg_banner_area {
  padding-top: clamp(130px, 17vw, 250px);
  padding-bottom: clamp(130px, 17vw, 250px);
}

.different_color_subheading h3 {
  color: var(--theme-tertiary) !important;
}

.down_arrow_design_area {
  padding-block: 25px;
  position: relative;
}

.down_arrow_design_area::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  border-top: none;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 15px solid #ffffff;
  filter: drop-shadow(0px 10px 8px rgba(0, 0, 0, 0.15));
  transform: translateX(-50%);
}

.our_approach_area {
  padding-block: 70px;
}

.ur_box_area h3 {
  font-size: var(--font33);
}

.ur_box_area p {
  font-size: var(--font25);
  font-weight: 500;
}

.ur_box_area {
  padding-left: 40px;
  position: relative;
  height: 100%;
}

.ur_box_area::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--theme-secondary-color);
}

.our_approach_area>.row>*:not(:last-child) {
  padding-right: clamp(20px, 3.2vw, 60px);
  border-right: 1px solid #b9b9b9;
}

.our_approach_area>.row>*:not(:first-child) {
  padding-left: clamp(20px, 3.2vw, 60px);
}

/* metarial_wrapper  */


.about_unique_cards_wrapper {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0px 12px 21.5px rgba(0, 0, 0, 0.07);
}

.about_unique_cards_area {
  display: flex;
}

.about_unique_cards_area>* {
  width: 50%;
}

.about_content_image_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
}

.about_unique_cards_wrapper>*:nth-child(even) {
  flex-direction: row-reverse;
}

.about_box_content_area {
  padding: clamp(30px, 3.2vw, 60px) clamp(30px, 3.2vw, 60px) clamp(44px, 3.2vw, 60px);
  background-color: var(--theme-green-color);
  /* box-shadow: 0 10px 29px rgba(0, 0, 0, .15); */
  align-content: center;
}

.document_details_area {
  border-radius: 16px;
  box-shadow: 0px 6px 21.5px rgba(0, 0, 0, 0.07);
  background-color: var(--bs-white);
}

.about_box_content_area h3 {
  font-size: var(--font33);
  text-transform: uppercase;
  margin-bottom: 1.3em;
}

.document_details_area {
  padding: 40px;
}

.document_details_area .common_title_area p {
  font-size: var(--font22);
}

.document_card_heading_area {
  padding-block: clamp(80px, 7vw, 120px);
  padding-inline: clamp(20px, 3.2vw, 60px);
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  margin-bottom: clamp(25px, 3.2vw, 60px);
}

.document_card_heading_area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #101010e3 70%, #000000b0 100%) 0;
  opacity: 0.8;
  z-index: -1;
}

.document_card_heading_area>*:nth-last-child(2) {
  margin-bottom: 0;
}

.document_card_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.document_card_content_area h3 {
  font-size: var(--font30);
  font-weight: 700;
  margin-bottom: 1.5em;
}

.point_heading {
  text-transform: uppercase;
  display: block;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.mobile_accordian_area {
  display: none;
}

.document_details_area .document_box_wrapper {
  padding: clamp(20px, 5vw, 30px) clamp(20px, 3.2vw, 50px);
  text-align: center;
}

.tab_nav_wrapper {
  height: 90%;
  overflow-y: auto;
  position: relative;
  scrollbar-width: none;
}

/* .tab_nav_wrapper::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, #10101000 10%, #ffffff 100%) 0;
  opacity: 0.8;
  z-index: 1;
} */

.service_tab_showcase_area .tab_ul li {
  position: relative;
}

.service_tab_showcase_area .tab_ul li::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  border-right: none;
  border-left: 15px solid transparent;
  border-bottom: 20px solid transparent;
  border-top: 20px solid transparent;
  transform: translateY(-50%);
  transition: var(--transition500);
}

.service_tab_showcase_area .tab_ul li a {
  font-size: var(--font22);
  padding: 20px 30px;
  border-radius: 7px;
  font-weight: 500;
  text-wrap: balance;
  background-color: var(--theme-fade-white);
  display: block;
  transition: var(--transition500);
}

.service_tab_showcase_area .tab_ul li.active a {
  background-color: var(--theme-secondary-color);
  color: var(--theme-white);
}

.service_tab_showcase_area .tab_ul li.active::after {
  border-left-color: var(--theme-secondary-color);
}

.service_tab_showcase_area .tab_ul li:not(:last-child) {
  margin-bottom: 25px;
}

.tech_pg_cta_wrapper {
  border-image: fill 0 linear-gradient(0deg, #000000bf 100%, #0000 0%);
}

.tooltip-inner {
  background-color: #575c6085;
  padding: 10px 30px;
  max-width: 100%;
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,
.bs-tooltip-bottom .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);
  border-bottom-color: #575c6085;
}

.tooltip .tooltip-arrow::before {
  left: 50%;
  transform: translateX(-50%);
}


/* Product Page  */
/* Product Page  */
/* Product Page  */


.shop_listing h1 {
  font-size: clamp(26px, 3vw, 50px);
}

.product_result_info p {
  margin-bottom: 0;
  color: #4c4f50;
}

.filter_box {
  background-color: var(--theme-fade-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ececec;
}


.filter_box .filter_accordian_wrapper .set i {
  font-size: clamp(16px, 1.7vw, 18px);
}

.filter_head {
  background-color: #ececec;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
}

.filter_head:after {
  content: " ";
  position: absolute;
  left: 50%;
  bottom: -14px;
  border-top: none;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 15px solid #ececec;
  transform: translateX(-50%);
}

.filter_head h4 {
  font-size: var(--font22);
}

.filter_head i {
  transition: var(--transition500);
}

.filter_head.active i {
  transform: rotate(180deg);
}

.filter_body {
  padding: 0 22px;
  overflow-y: auto;
  max-height: 100vh;
  display: none;
}

.filter_body:not(:has(.faqs-area)) {
  padding-block: 30px;
}

.filter_accordian_wrapper .faqs-area .set>a {
  font-size: var(--font21);
  font-weight: 600;
  text-transform: capitalize;
  padding: clamp(20px, 2.2vw, 25px) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d4d4d448;
}

.filter_accordian_wrapper .faqs-area .set>a.active {
  border-color: transparent;
  color: var(--theme-secondary-color);
}

.filter_accordian_wrapper .faqs-area .set>a i {
  transition: var(--transition500);
  margin-left: 10px;
  flex: 0 0 auto;
  filter: drop-shadow(0px 12px 21.5px rgba(0, 0, 0, 0.13));
  background-color: #ffffff;
  width: 29px;
  height: 26px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.filter_accordian_wrapper .faqs-area .set>a.active i {
  transform: rotate(180deg);

}

.filter_accordian_wrapper .faqs-area .set {
  border-color: var(--theme-green-color);
}

.filter_accordian_wrapper .faqs-area .content {
  border-bottom: 1px solid #d4d4d448;
  padding-bottom: 30px;
}

.shop_filter_sub_cat {
  column-gap: 12px;
  margin-bottom: 20px;
}

.shop_filter_sub_categories>*:last-child {
  margin-bottom: 0;
}

.shop_filter_sub_cat * {
  font-size: var(--font18);
  line-height: 1.4;
}

.shop_filter_sub_cat label {
  cursor: pointer;
  transition: all 0.5s;
}

.shop_filter_sub_cat:has(input[type="radio"]:checked) label {
  font-weight: 700;
}

.shop_filter_sub_cat input[type="checkbox"],
.shop_filter_sub_cat input[type="radio"] {
  accent-color: #21a58a;
  font-size: var(--font18);
}

.shop_top_bar .select_area select {
  color: var(--theme-color);
  border-color: transparent;
  font-size: var(--font16);
}

.shop_top_bar {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #2b393515;
}

.product_list_wrapper {
  background-color: var(--theme-fade-white);
  border-radius: 17px;
  padding: 50px 30px;
}

.product_listing_information_area h4 {
  font-size: var(--font28);
  font-weight: 500;
  margin-bottom: 1.2em;
}

.product_listing_information_area p {
  font-size: var(--font21);
}


.product_list_wrapper .products {
  display: flex !important;
  justify-content: center;
  column-gap: 20px;
  row-gap: clamp(40px, 3.2vw, 60px);
  flex-wrap: wrap;
}

.product_list_wrapper .products li {
  flex: 1 0 calc(33.33% - 20px);
  max-width: calc(33.33% - 20px);
}

.product_image_area {
  border-radius: 16px;
  background-color: #eeeeee;
  align-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.product_image_area .actual_product_image {
  width: 100%;
  aspect-ratio: 2/2.1;
  object-fit: scale-down;
  padding: 20px;
  filter: drop-shadow(2px 14px 16px #00000030);

}

.product_image_area .actual_product_image.object-fit-cover {
  padding: 0;
}

.hover_product_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition500);
  object-fit: cover;
}

.featured_product_showcase_box {
  background-color: var(--bs-white);
  box-shadow: 0px 12px 21.5px rgba(0, 0, 0, 0.07);
  border-radius: 15px;
  padding: 10px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;

}

.product_list_wrapper .featured_product_showcase_box {
  height: 100%;
}

.featured_product_showcase_box .hover_product_image {
  height: 100% !important;
}

.featured_product_showcase_box:hover .hover_product_image {
  opacity: 1;
  visibility: visible;
}

.featured_product_showcase_box .rs_redirect_btn_area a span {
  font-weight: 700;
}

.product_image_area:hover .hover_product_image {
  opacity: 1;
}

.featured_product_showcase_box::after {
  display: none;
}

.featured_product_showcase_box h3 {
  font-weight: 800;
  font-size: var(--font22);
  margin-bottom: 1em;
  line-height: 1.5;
}

.featured_product_showcase_box h3 a {
  color: var(--theme-color);
}

.featured_product_showcase_box h3 a:hover {
  color: var(--theme-secondary-color);
}

.featured_product_price span {
  font-size: clamp(16px, 1.5vw, 20px);
  color: #9b9692;
}

.featured_product_price span.sale_price {
  font-size: clamp(20px, 2vw, 28px);
  color: var(--theme-green-color);
}

.product_button_options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #a19d91;
  padding-top: 20px;
  margin-top: 20px;
}

.clear_filter {
  color: var(--bs-white);
  border-style: unset;
}

.clear_filter:focus {
  color: var(--bs-white);
}

.product_button_options .common_btn,
.clear_filter {
  background-color: var(--theme-green-color);
  color: var(--bs-white);
  border-color: var(--theme-green-color);
  line-height: 53px;
  padding: 0 20px;
  min-width: unset;
}

.product_button_options .common_btn:hover,
.clear_filter {
  background-color: var(--theme-secondary-color);
  border-color: var(--theme-secondary-color);
}

.wishlist_area {
  background-color: #f6e0c3;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition500);
}

.wishlist_area a {
  display: block;
  line-height: 1;
}

.wishlist_area i {
  padding-top: 3px;
  color: var(--theme-color);
  font-size: clamp(16px, 1.5vw, 22px);
  transition: var(--transition500);
}

.shop_banner_part_wrapper {
  padding: clamp(24px, 3.2vw, 48px) 0;
}

.sort_filter_area .select_area {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.sort_filter_area {
  background-color: transparent;
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 10px;
  cursor: pointer;
  transition: var(--transition500);
  max-width: 290px;
  margin-left: auto;
  overflow: hidden;
}

.sort_filter_area label {
  text-transform: uppercase;
}

.shop_banner_part nav * {
  text-transform: uppercase;
}

.sort_filter_area .select_area select {
  padding: 0 30px 0 10px;
  height: unset;
  background-position: right 2px center;
  font-weight: 600;
  text-transform: uppercase;
  background-color: transparent;
  max-width: 160px;
}

.filter_sticky {
  position: sticky;
  top: clamp(40px, 5vw, 80px);
}

/* Pagination  */
.woocommerce .product_list_wrapper .woocommerce-pagination {
  display: flex;
  justify-content: end;
}

.woocommerce .product_list_wrapper .woocommerce-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.woocommerce .product_list_wrapper .woocommerce-pagination ul.page-numbers li,
.woocommerce-page .product_list_wrapper .woocommerce-pagination ul.page-numbers li {
  margin: 0;
  border: none;
}

.woocommerce .product_list_wrapper .woocommerce-pagination ul.page-numbers:after,
.woocommerce .product_list_wrapper .woocommerce-pagination ul.page-numbers:before {
  display: none;
}

.woocommerce-js .product_list_wrapper nav.woocommerce-pagination ul li :is(a, span) {
  font-size: 1em;
  padding: 0;
  width: 2.5em;
  height: 2.5em;
  font-weight: 600;
  color: var(--bs-black);
  background: var(--bs-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--siteTransition);
  border: 1px solid var(--bs-black);
}

.woocommerce-js .product_list_wrapper nav.woocommerce-pagination ul li .current,
.woocommerce-js .product_list_wrapper nav.woocommerce-pagination ul li :is(a):hover {
  background: var(--sitePrimaryColor);
  color: var(--bs-black);
  border-color: var(--sitePrimaryColor);
}

/* Pagination  */
.page_changing_arrow {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: var(--transition500);
  font-size: 16px;
  background-color: transparent;
  border: 1px solid var(--theme-secondary-color);
  border-radius: 50%;
  cursor: pointer;
}

.page_changing_arrow:hover {
  background-color: var(--theme-secondary-color);
  border-color: var(--theme-secondary-color);
}

.page_changing_arrow svg {
  transition: var(--transition500);
  fill: var(--theme-secondary-color);
  width: 20px;
  height: 20px;
}

.page_changing_arrow:hover svg {
  fill: #ffffff;
}

.page_changing_arrow.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.page-numbers {
  font-size: clamp(16px, 1.5vw, 20px);
}

.page-numbers:hover {
  color: inherit;
}

.page-numbers.active {
  color: var(--theme-secondary-color);
  transform: scale(1.2);
}


/* =============================
        PRODUCT DETAILS PAGE
        PRODUCT DETAILS PAGE
        PRODUCT DETAILS PAGE
================================ */
.your_haven_area {
  padding: 60px;
}

.product_details_breadcrumb {
  margin-bottom: clamp(40px, 4vw, 70px);
}

.product_pg_key_points_wrapper .showcase_item_card {
  background-color: #f2f6fa;
}

.key_points_custom_gap {
  row-gap: 45px;
}


.product_gallery_area,
.itech_product_details_area {
  position: sticky;
  top: 30px;
}

.product_gallery_area .swiper {
  width: 100%;
  height: 100%;
}

.product_gallery_area .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product_gallery_area .swiper-slide img {
  display: block;
  width: 100%;
  height: 100% !important;
  overflow: hidden;
  object-fit: contain;
}


.product_gallery_area .swiper-slide {
  background-size: cover;
  background-position: center;
}

.productBigImageSwiper {
  height: 100%;
  width: 100%;
}

.productSmallImageSwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.productSmallImageSwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.6;
  background-color: transparent;
}


.productSmallImageSwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.productSmallImageSwiper .swiper-slide-thumb-active .product_small_image_area {
  border: 1px solid #2dc8a8;
}

.product_big_image_area {
  width: 100%;
  height: 100%;
  outline: none;
}

.product_big_image_area img {
  width: 100%;
  height: 100%;
  /* filter: drop-shadow(0px 10px 26px rgba(0, 0, 0, 0.15)); */
  padding: 30px 30px 50px;
}

.product_small_image_area {
  width: 100%;
  height: 100%;
  padding: 25px;
  background-color: var(--bs-white);
  border: 1px solid #ececec;
  border-radius: 16px;
}

.productSmallImageSwiper .product_small_image_area img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.productSmallImageSwiper {
  position: unset;
}

.product_small_image_slide {
  background-color: #ffffff;

}

.product_small_gallery_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.product_small_gallery_arrow svg {
  width: 56px;
  height: 56px;
  padding: 2px;
  fill: #000000;
}

.product_small_gallery_next {
  right: -6px;
}

.product_small_gallery_prev {
  left: -6px;
}

.thumb_wrapper {
  position: relative;
  height: 200px;
}



.itech_zoom_icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 20px;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 3;
  filter: drop-shadow(0px 12px 21.5px rgba(0, 0, 0, 0.07));
  outline: none;
}

.product_big_image_slide .itech_zoom_icon img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  padding: 10px;
}



.lb-close {
  position: absolute;
  top: -30px !important;
  right: 30px !important;
  opacity: 1 !important;
}

.thumb_wrapper .swiper-button-disabled {
  opacity: 0;
}

.lightbox .lb-image {
  border: none !important;
  border-radius: 0 !important;
}

.thumb_wrapper {
  padding: 0 30px;
}



/* CONTENT OF PRODUCT  */
.itech_product_details_area .common_title_area h1 {
  font-weight: 700;
  font-size: clamp(26px, 3vw, 50px);
}

.itech_product_details_area .common_title_area>h5 {
  color: var(--theme-green-color);
}

.productBigImageSwiper .swiper-slide {
  height: clamp(300px, 50vw, 600px);
}
.productBigImageSwiper .swiper-slide-active img{
  filter: drop-shadow(0px 10px 26px rgba(0, 0, 0, 0.15));
}
.itech_product_details_area .common_title_area {
  margin-bottom: 30px;
}

.itech_product_details_area .common_title_area p {
  max-width: unset;
}

.product_addition_information {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #bccfc0;
}

.itech_product_details_area .featured_product_price span {
  font-size: clamp(20px, 2.4vw, 24px);
  color: #9b9692;
}

.itech_product_details_area .featured_product_price span.sale_price {
  font-size: clamp(26px, 3.2vw, 32px);
  color: var(--theme-secondary-color);
}

.product_details_timeline {
  background-size: 100% 100%;
}

/* .product_details_timeline .for_health_pg_tab_info {
  max-width: 1090px;
  margin-inline: auto;
} */
.tab_top_area {
  margin-bottom: clamp(20px, 1.9vw, 30px);
  overflow-y: auto;
  scrollbar-width: none;
}

.tab_info_wrapper .tab_ul li a {
  padding: 15px 60px;
  font-size: var(--font25);
  font-weight: 700;
  width: 100%;
  height: 100%;
  display: block;
  align-content: center;
  text-wrap: nowrap;
  background-color: var(--bs-white);
  box-shadow: 0px 12px 21.5px rgba(0, 0, 0, 0.05);
  font-weight: 500;
  border-radius: 7px;
}

.tab_info_wrapper .tab_ul {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.tab_info_wrapper .tab_ul li {
  position: relative;
  flex-grow: 1;
  text-align: center;
}

.tab_info_wrapper .tab_ul li::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  border-top: none;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 15px solid transparent;
  transform: translateX(-50%);
  transition: var(--transition500);
}

.tab_info_wrapper .tab_ul li.active a {
  background-color: var(--theme-secondary-color);
  color: var(--bs-white);
}

.tab_info_wrapper .tab_ul li.active::after {
  border-top-color: var(--theme-secondary-color);
}


.product_description_info_area {
  width: 100%;
  border-collapse: collapse;
  border-width: 0;
}

.product_description_info_area td {
  padding: 15px 25px;
  font-size: clamp(16px, 2vw, 26px);
  white-space: nowrap;
  border-color: #cbcbcb;
}

.product_description_info_area tr:not(:last-child) {
  border-bottom: 1px solid #0282932f;
}


.product_description_info_area tr td:first-child {
  width: 60%;
  font-weight: 600;
}

.share_btn_area p {
  font-weight: 600;
}

.product_details_tab_content_wrapper {
  padding: 60px;
  background-color: var(--bs-white);
  border-radius: 16px;
  border: 1px solid #ececec;
}

.product_details_tab_content_wrapper .common_title_area {
  overflow-x: auto;
}

.product_details_tab_content_wrapper .common_title_area p {
  font-size: var(--font22);
}

.product_details_tab_content_wrapper .common_title_area ul li {
  margin-bottom: 1.2em;
}

/* RELATED PRODUCT AREA  */




.quote_request_btn_area .common_btn {
  color: var(--theme-green-color);
  border-color: var(--theme-green-color);
  background-color: transparent;
  font-weight: 600;
}

.quote_request_btn_area .common_btn:hover {
  color: #fff;
  border-color: var(--theme-green-color);
  background-color: var(--theme-green-color);
}

/* ASTRA CSS OVERWRITE  */
/* .ast-plain-container,
.ast-page-builder-template {
  background-color: var(--theme-tertiary);
} */

#ast-scroll-top {
  display: none !important;
}

.product_specs_wrapper :is(h3, h4) {
  font-size: var(--font30);
  font-weight: 800;
  margin-bottom: 1.5em;
}

.product_specs_wrapper ul {
  list-style: disc;
  padding-left: 24px;
}

.product_specs_wrapper ul li {
  font-size: var(--font22);
  font-weight: 600;
}

.product_specs_wrapper ul li:not(:last-child) {
  margin-bottom: 10px;
}

.product_specs_wrapper ul li::marker {
  color: var(--theme-secondary-color);
}

.product_specs_wrapper {
  border-top: 1px solid #2b39352c;
  padding-top: 30px;
}

.featureProductSwiper,
.relatedBlogSwiper {
  padding-bottom: 60px;
  position: unset;
}

.swiper-button-lock {
  display: none;
}

.feature_product_slider {
  padding-inline: 60px;
}

.height_match_swiper .swiper-slide {
  height: unset;

}

.featureProductSwiper .featured_product_showcase_box {
  height: 100%;
}

.feature_product_slider .industries_swiper_button_next {
  top: calc(50% + 60px);
  right: 0;
  margin-top: 0;
}

.feature_product_slider .industries_swiper_button_prev {
  top: calc(50% + 60px);
  left: 0;
  margin-top: 0;
}

.product_additional_points_wrapper {
  background-color: #eeeeee;
  background-repeat: no-repeat;
  background-image: url('../img/wave-lines-vector-png-photo-15.png');
  background-position: center;
  background-size: 100% 100%;
}

.product_additional_points_wrapper .product_selection_area {
  max-width: calc(100% - clamp(50px, 7vw, 120px));
  margin: 0 auto;
}

.pd_details_cta_wrapper .common_title_area h3 {
  font-size: clamp(28px, 3vw, 50px);
}


/* Resources Listing  */
/* Resources Listing  */
/* Resources Listing  */

/* .resources_card_listing_area {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  row-gap: clamp(40px, 3.2vw, 60px);
  flex-wrap: wrap;
} */

/* .resources_card_listing_area li {
  flex: 1 0 calc(33.33% - 15px);
  max-width: calc(33.33% - 15px);
} */
.resources_card_listing_area>.row {
  row-gap: clamp(40px, 3.2vw, 60px);
}

.resources_showcase_box {
  background-color: var(--bs-white);
  filter: drop-shadow(0px 12px 21.5px rgba(0, 0, 0, 0.07));
  border-radius: 15px;
  padding: 10px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition500);
}

.resources_showcase_box:hover img {
  transform: scale(1.1);
}


.resources_showcase_box:hover .hover_product_image {
  opacity: 1;
  visibility: visible;
}

.resources_showcase_box .rs_redirect_btn_area a span {
  font-weight: 700;
}

.product_image_area:hover .hover_product_image {
  opacity: 1;
}

.resources_showcase_box::after {
  display: none;
}

.resources_showcase_box h3 {
  font-weight: 800;
  font-size: var(--font22);
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.resources_showcase_box p {
  font-size: var(--font18);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.resources_showcase_box h3 a {
  color: var(--theme-color);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.resources_showcase_box h3 a:hover {
  color: var(--theme-secondary-color);
}

.resources_prof_image_area {
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 20px;
}

.resources_prof_image_area img {
  width: 100%;
  aspect-ratio: 2 / 1.5;
  object-fit: cover;
  transition: var(--transition500);
}





.listing_pg_big_card .rs_image_area:hover>img {
  transform: scale(1.1);
}

.listing_pg_big_card .rs_image_area {
  width: 100%;
  height: 100%;
  max-width: unset;
  border-radius: 16px;
  overflow: hidden;
}

.listing_pg_big_card .rs_image_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.listing_pg_big_card {
  background-color: var(--bs-white);
  border-radius: 16px;
  padding: 15px 15px;
  filter: drop-shadow(0px 12px 21.5px rgba(0, 0, 0, 0.07));
  margin-bottom: clamp(40px, 3.2vw, 60px);
}


.listing_pg_big_card .rs_content_area {
  padding-block: 0;
  padding-inline: 0;
}

.listing_pg_big_card .small_card_total_content {
  padding-bottom: 0;
}

.listing_pg_big_card .rs_content_area a:hover {
  color: var(--theme-secondary-color);
}

:where(.listing_pg_big_card) .rs_content_area h3 {
  font-size: var(--font33);
  font-weight: 700;
  margin-bottom: 25px;
}

:where(.listing_pg_big_card) .rs_content_area p {
  font-size: var(--font25);
  margin-bottom: 15px;
}

.listing_pg_big_card .rs_redirect_btn_area a {
  display: flex;
  align-items: center;
  justify-content: end;
  column-gap: 10px;
  font-weight: 600;
}

.listing_pg_big_card .rs_redirect_btn_area {
  margin-left: 0;
  margin-right: auto;
}

.listing_pg_big_card .rs_redirect_btn_area a span {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: #bfbfbf;
}

.listing_pg_big_card .small_card_total_content {
  display: block;
  height: 100%;
  padding-block: 40px;
  padding-right: clamp(40px, 3.2vw, 60px);
}

.resources_listing_panel .sort_filter_area {
  max-width: 260px;
}

.resources_listing_panel .empty_circle {
  width: 50%;
  top: 30%;
}

.resources_listing_panel .ring_circle {
  width: 50%;
  top: unset;
  bottom: -30%;
  height: 40%;
  left: -15%;
}

.resources_listing_panel .small_circle {
  top: 65%;
}

/* Resource Details  */
.resources_details_wrapper .common_title_area h1 {
  font-size: clamp(26px, 3vw, 50px);
}

.resources_details_wrapper .special_info {
  font-size: var(--font22);
  padding: clamp(30px, 3.2vw, 50px) 0;
}

.feature_image_showcase_wrapper {
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: clamp(25px, 3.2vw, 60px);
}

.feature_image_showcase_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/1.5;
}

.relatedBlogSwiper {
  padding-inline: 10px;
}

.relatedBlogSwiper .resources_showcase_box {
  filter: drop-shadow(0px 12px 7.5px rgba(0, 0, 0, 0.07));
}

/* SECONDARY COMMON CONTENT AREA  */


.common_content_area h2 {
  font-size: var(--font33);
  margin-bottom: 0.8em;
  font-family: var(--theme-font);
}

.common_content_area h3 {
  font-size: var(--font30);
  margin-bottom: 0.8em;
  font-family: var(--theme-font);
}


.common_content_area p {
  font-size: var(--font22);
}

.common_content_area ul {
  list-style: disc;
  padding-left: 24px;
}

.common_content_area ul li {
  font-size: var(--font22);
  font-weight: 600;
  margin-bottom: 1.5em;
}

.common_content_area ul li::marker {
  color: var(--theme-secondary-color);
}

.common_content_area :is(h1, h2, h3, h4, h5, h6) {
  margin: clamp(25px, 3.2vw, 60px) 0;
}

.common_content_area>*:first-child {
  margin-top: 0;
}

.common_content_area>*:last-child {
  margin-bottom: 0;
}

/* SECONDARY COMMON CONTENT AREA END  */
/* Modal Css  */
.request_form_area_main :is(.input_area, .select_area) {
  margin-bottom: 24px;
  position: relative;
}

.request_form_area_main :is(input, textarea)::placeholder {
  color: #000000;
  font-weight: 600;
}

.cut_button {
  font-size: var(--font21);
  cursor: pointer;
}

.ql_product_form_modal .modal-body .request_form_area_main .input_area input {
  width: 100%;
  padding: 5px 20px;
  height: 62px;
  border: none;
  outline: 0;
  font-size: var(--font18);
  font-family: var(--theme-font);
  border-radius: 6px;
  border: 1px solid #cbcbcb;
  color: var(--theme-black);
  background-color: var(--theme-fade-white);
  font-weight: 600;
}

.ql_product_form_modal .modal-body .request_form_area_main .input_area textarea {
  width: 100%;
  height: 130px;
  resize: none;
  outline: 0;
  padding: 10px 20px;
  font-size: var(--font18);
  font-family: var(--theme-font);
  border-radius: 6px;
  border: 1px solid #cbcbcb;
  color: var(--theme-black);
  background-color: var(--theme-fade-white);
  font-weight: 600;
}

/* Modal Css Ends  */
.swiper-button-lock {
  display: none;
}

.product_image_showcase_area .summary.entry-summary .woocommerce-breadcrumb {
  display: none;
}

.woocommerce-js .woocommerce-breadcrumb {
  font-size: 16px;
  font-weight: 700;
  color: var(--bs-black);
  text-transform: uppercase;
}

.woocommerce-js .woocommerce-breadcrumb a {
  font-weight: 400;
  color: var(--bs-black);
}

.woocommerce-js div.product div.images.woocommerce-product-gallery,
.summary.entry-summary {
  position: sticky;
  top: 50px;
}

.woocommerce-js div.product:has(.woocommerce-product-gallery) {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 40px;
}

.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
  float: unset;
}

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
  float: unset;
}

.woocommerce-js .woocommerce-breadcrumb {
  margin: 0;
}

/* Table Type Content Css  */
.pd_table {
  border-radius: 16px;
  border: 1px solid #ececec;
}

.pd_table {
  margin-bottom: 40px;
}

.common_title_area :is(ul, p)+.pd_table {
  margin-top: clamp(25px, 2.61vw, 50px);
}

.pd_table table {
  width: 100%;
  min-width: 800px;
  margin-bottom: 0;
  border: none;
}

.pd_table table th {
  background: var(--theme-secondary-color);
  color: #fff;
  font-size: clamp(18px, 1.8vw, 25px);
  font-family: var(--theme-font);
  text-align: left;
  width: calc(100% / 4);
  font-weight: 500;
  padding: 15px 20px;
}



.pd_table table thead tr th:not(:last-child) {
  border-right-width: 1px;
  border-color: #ffffff59;
}

.pd_table table tbody tr td:last-child {
  border-right: none;
}

.pd_table table th strong {
  font-weight: 600;
  border-right: 1px solid #8896aa;
  display: block;
}

.pd_table table th:last-child strong {
  border: 0;
}

.pd_table table tbody td {
  color: #000;
  font-size: clamp(16px, 1.8vw, 20px);
  padding: 10px 20px;
  border-bottom: 1px solid #ececec;
  border-right: 1px solid #ececec;
}

/* Policy page  */
.policy_content_wrapper .sm_empty_circle6 {
  top: calc(-23% + 130px);
  right: -13%;
}

.policy_content_wrapper .ring_circle {
  top: unset;
  transform: unset;
  bottom: -45%;
  left: -13%;
  width: 50%;
}

.policy_content_design_area p a,
.policy_content_design_area a {
  color: var(--theme-secondary-color);
}

.policy_content_design_area ul {
  margin-bottom: clamp(20px, 2vw, 40px);
}

.policy_content_design_area p {
  font-size: var(--font22);
  margin-bottom: 1.3em;
}

.policy_content_design_area ul li {
  font-size: var(--font22);
}

.policy_banner_wrapper {
  padding-top: clamp(130px, 15vw, 200px);
  padding-bottom: clamp(100px, 13vw, 150px);
  border-image: unset;
  background-color: var(--theme-color);
}

/* Particles JS */
canvas {
  display: block;
  vertical-align: bottom;
}

/* ---- particles.js container ---- */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: transparent;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

/* ---- stats.js ---- */
.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13e8e9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats,
.count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}



.double_btn_wrapper:has(.ql-btn b) .common_btn b {
  display: block;
}

.double_btn_wrapper:has(.ql-btn b) .common_btn {
  line-height: 1.2;
  padding-block: 10px;
  text-align: center;
  align-content: center;
}