/** @format */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@font-face {
  font-family: nexabold;
  src: url(../webfonts/nexa/nexabold.otf);
}
@font-face {
  font-family: nexalight;
  src: url(../webfonts/nexa/nexalight.otf);
}
@font-face {
  font-family: Outfit-Black;
  src: url(../webfonts/outfit/Outfit-Black.ttf);
}
@font-face {
  font-family: Outfit-Bold;
  src: url(../webfonts/outfit/Outfit-Bold.ttf);
}
@font-face {
  font-family: Outfit-ExtraBold;
  src: url(../webfonts/outfit/Outfit-ExtraBold.ttf);
}
@font-face {
  font-family: Outfit-ExtraLight;
  src: url(../webfonts/outfit/Outfit-ExtraLight.ttf);
}
@font-face {
  font-family: Outfit-Light;
  src: url(../webfonts/outfit/Outfit-Light.ttf);
}
@font-face {
  font-family: Outfit-Medium;
  src: url(../webfonts/outfit/Outfit-Medium.ttf);
}
@font-face {
  font-family: Outfit-Regular;
  src: url(../webfonts/outfit/Outfit-Regular.ttf);
}
@font-face {
  font-family: Outfit-SemiBold;
  src: url(../webfonts/outfit/Outfit-SemiBold.ttf);
}
@font-face {
  font-family: Outfit-Thin;
  src: url(../webfonts/outfit/Outfit-Thin.ttf);
}


:root{
  --transition: all 0.5s;
  --nexalight-300: nexalight;
  --nexabold--700: nexabold;
  --Outfit-100: Outfit-Thin;
  --Outfit-200: Outfit-ExtraLight;
  --Outfit-300: Outfit-Light;
  --Outfit-400: Outfit-Regular;
  --Outfit-500: Outfit-Medium;
  --Outfit-600: Outfit-SemiBold;
  --Outfit-700: Outfit-Bold;
  --Outfit-800: Outfit-Black;
  --Outfit-900: Outfit-ExtraBold;
  --default-white: #FFFFFF;
  --default-black: #000000;
  --button-gradient-color: linear-gradient(180deg, #0FBDC8 37.5%, #E3EBFF 100%); 
  --button-cta-color: linear-gradient(180deg, #1F5FFF 37.5%, #E3EBFF 100%);
  --button-ctas-color: linear-gradient(180deg, #04CE78 37.5%, #DDFFF1 100%);
  --button-color: #FFFFFF; 
  --heading-color: #000D44;
  --heading-short-color: #0FBDC8;
  --text-color: #788094;
  --btn-bg: #29319c;
  --main-bg: #8BC5D2;
  --theme-Nunito-font: "Nunito", sans-serif;
  --theme-NunitoSans-font: "Nunito Sans", sans-serif;
}

html, body{
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--Outfit-400);
  overflow-x: hidden;
}
figure{
  margin: 0;
}
ul{
  padding: 0;
  margin: 0;
}
ul li{
  list-style-type: none;
}
b,
strong {
  font-weight: 700;
}
p {
  margin: 0 0 20px 0;
}
p a:hover{
  color: var(--text-color);
}
p a:hover i{
  color: var(--text-color);
}
p:last-child {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px 0;
  padding: 0;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}
img {
  max-width: 100%;
}
/* Start Form Input */
input[type=checkbox] {
  position: relative;
	border: 1px solid var(--heading-short-color);
	border-radius: 2px;
	background: none;
	cursor: pointer;
	line-height: 0;
	margin: 0 .6em 0 0;
	outline: 0;
	padding: 0 !important;
	vertical-align: text-top;
	height: 20px;
	width: 20px;
	-webkit-appearance: none;
  opacity: .5;
}
button{
  outline: none;
  border: none;
}
input[type=checkbox]:hover {
  opacity: 1;
}

input[type=checkbox]:checked {
  background-color: #000;
  opacity: 1;
}

input[type=checkbox]:before {
  content: '';
  position: absolute;
  right: 50%;
  top: 50%;
  width: 4px;
  height: 10px;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}
input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
input[type="number"],
select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #000;
  outline: none !important;
}

textarea {
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  color: #000;
  outline: none !important;
}

select {
  width: 100%;
  background: url(../image/aroowdrop.svg) no-repeat calc(100% - 16px) center
    transparent;
  background-color: #ffffff;
  background-size: 12px;
  padding-right: 30px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: none;
}


::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}

:-ms-input-placeholder {
  opacity: 1;
  color: #000;
}

::-moz-placeholder {
  opacity: 1;
  color: #000;
}

:-moz-placeholder {
  opacity: 1;
  color: #000;
}
a{
  display: inline-block;
  transition: var(--transition);
  color: var(--default-black);
  text-decoration: none;
}
blockquote{
  margin: 0;
}
a:hover{
  color: var(--icon-bg);
}
button.navbar-toggler:focus-visible,
button.navbar-toggler:focus{
  box-shadow: none;
  outline: none;
}

.bg_con,
.site_header::before,
.banner_sec{
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;  
}

h1{
  font-family: var(--nexabold--700);
  color: #000000;
  font-size: 56px;
  line-height: 64px;
}
h2{
  font-family: var(--nexabold--700);
  color: #000000;
  font-size: 48px;
  line-height: 56px;
}
p{
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  font-weight: 400;
  font-family: var(--Outfit-400);
  color: var(--text-color);
}
h3{
  font-family: var(--nexabold--700);
  font-size: 28px;
  line-height: 32px;
}
h4{
  font-family: var(--nexabold--700);
  font-size: 24px;
  line-height: 32px;
}
h5{
  font-family: var(--nexabold--700);
  font-size: 26px;
  line-height: 28px;
}

.h_theme_button{
  font-family: var(--Outfit-500);
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  padding: 11px 35px;
  border-radius: 25px;
  background: var(--button-gradient-color);
  box-shadow: 0px 3px 15px 0px #B0BAD3;
  color: var(--button-color);
  transition: background 0.5s;
  text-transform: uppercase;
  position: relative;
  z-index: 0;
  letter-spacing: 1px;
}
.h_theme_button:hover{
  background: linear-gradient(90deg, #0FBDC8 37.5%, #E3EBFF 100%);
  color: #FFFFFF;
}
.h_theme_button_wrapper{
  margin: 10px 10px 15px 10px;
}
img{
  max-width: 100%;
  width: 100%;
}
.common_padding{
  padding:75px 0;
}
.theme_heading_wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 0;
}
.theme_heading_wrapper h2{
  margin: 0;
}
.theme_heading_wrapper .h_theme_button{
  margin-bottom: 0;
}
.theme_heading_wrapper h2{
  background-color: var(--default-white);
  padding-right: 20px;
}
.theme_heading_wrapper::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #D8DDE1;
  transform: translateY(-50%);
  z-index: -1;
}
.theme_heading_wrapper .theme_button_wrapper{
  padding-left: 20px;
  background-color: var(--default-white);
}
/*Site Header*/
.site_header{
  background: var(--default-white);
}
.site_header .main_header .navigation{
  width: 100%;
}
.site_header .navbar-brand img{
  max-width: 120px;
}

.site_header .main_header{
  background: var(--heading-short-color);
  padding: 10px 0;
}
.main_header-wrap{display: flex; justify-content: space-between; width: 100%; position: relative;}
.header_rightpart .h_theme_button{background: transparent; padding: 10px 30px; box-shadow: inherit; border: 1px solid #fff;}
.top_header-right{
  position: relative;
  display: flex;
  gap: 25px;
}

.h_cta-left_wrap{width: 60%;}
.product_img{width: 40%; height: 230px;}
.site_header .navbar  ul.navbar-nav{
  gap: 12px;
}
.site_header .navbar ul.navbar-nav li a{
  padding: 10px 0;
  color: var(--default-white);
  font-family: var(--nexabold--500);
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  position: relative;
}
.site_header .navbar ul:not(.dropdown-menu) .nav-item > .nav-link::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 1px;
  background-color: #fff;
  right: 0;
  bottom: 0px;
  transition: all 0.5s ease-in-out;
  left: unset;
}
.site_header .navbar ul:not(.dropdown-menu) .nav-item > .nav-link:hover::before, .site_header .navbar ul:not(.dropdown-menu) .nav-item.active > .nav-link::before {
  width: 100%;
  transition: all 0.5s ease-in-out;
  left: 0;
  right: unset;
}
.header_contact_info ul{
  display: flex;
  gap: 25px;
}
.header_contact_info ul li a{
  display: flex;
  align-items: center;
  gap: 12px 8px;  
}
.header_contact_info ul li a p{
  font-size: 16px;
  font-family: var(--Outfit-500);
  line-height: 24px;
  transition: all 0.5s;
  color:  rgba(0, 13, 68, 1);
}
.header_contact_info ul li a:hover p{
  color: var(--heading-short-color);
}
.header_contact_info ul li a .details_icon i{
  font-size: 30px;
  color: var(--heading-short-color);
}
.header_contact_info ul li a h6{
  margin-bottom: 3px;
  color: #788094;

}


.site_header .navbar-toggler-icon img,
.site_header .toggle_offcanvas,
.site_header .toggle_offcanvas .navbar-toggler-icon{
  width: 45px;
  max-width: 45px;
  height: 45px;
  box-shadow: none;
}
.site_header .navigation ul.navbar-nav{
  gap: 12px;
}
.site_header .navigation ul.navbar-nav li a{
  padding: 10px 0;
  color: var(--default-white);
  font-family: var(--nexabold--500);
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  position: relative;
}
.site_header .navigation ul:not(.dropdown-menu) .nav-item > .nav-link::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 1px;
  background-color: #fff;
  right: 0;
  bottom: 0px;
  transition: all 0.5s ease-in-out;
  left: unset;
}
.site_header .navigation ul:not(.dropdown-menu) .nav-item > .nav-link:hover::before, .site_header .navigation ul:not(.dropdown-menu) .nav-item.active > .nav-link::before {
  width: 100%;
  transition: all 0.5s ease-in-out;
  left: 0;
  right: unset;
}


.searchfrmbox input.input_search{
  font-size: 14px !important;
  color: rgba(124, 124, 124, 1) !important;
  padding: 10px 10px 10px 50px !important;
  width: 100% !important;
  border-radius: 50px !important;
  border: none !important;
  background: rgba(237, 242, 244, 1) !important;

  
}
.searchfrmbox .search_button i {
  font-size: 16px !important;
  color: rgba(15, 189, 200, 1)  !important;
  position: absolute;
  top: 13px !important;
  left: 15px !important;
}


/*geko Mega menu css Start here*/

.geko_menu_bar{
  z-index: 9;
}
.geko_menu_bar li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
}
.drop_arrow{
  display: none;
}
.drop_arrow_menu_item .drop_arrow{
  display: block;
}
.geko_menu_bar li ul li{
  margin: 12px  0;
}
.geko_menu_bar li ul li a{
  padding: 0 !important;
}
.geko_depth_1_inner_menu_list .drop_arrow_menu_item .drop_arrow svg path{
  fill: #000000;
}
.geko_menu_bar ul.geko_depth_1_inner_menu_list li ul.geko_depth_2_inner_menu_list li{
  margin-left: 15px;
}

.navigation ul.geko_menu_bar ul.geko_depth_1_inner_menu_list li a{
  color: #000000;
}
.navigation ul.geko_menu_bar ul.geko_depth_1_inner_menu_list li a:hover{
  color: #0FBDC8;
}
.geko_menu_bar .geko_depth_1_inner_menu_list{
  position: absolute;
  background: #FFFFFF;
  padding: 20px 15px;
  border-radius: 10px;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  opacity: 0;
  display: none;
}
.geko_menu_bar li.drop_arrow_menu_item:hover > ul.geko_depth_1_inner_menu_list{
  opacity: 1;
  display: flex;
}
.geko_menu_bar ul.geko_depth_1_inner_menu_list li ul.geko_depth_2_inner_menu_list{
  position: absolute;
  left: calc(100% + 20px);
  top: 0;
  background: #FFFFFF;
  padding: 20px 15px;
  border-radius: 10px;
  min-width: 220px;
  opacity: 0;
  display: none;
}
.geko_menu_bar ul.geko_depth_1_inner_menu_list li:hover ul.geko_depth_2_inner_menu_list{
  opacity: 1;
  display: flex;
}
.geko_menu_bar ul.geko_depth_1_inner_menu_list li ul.geko_depth_2_inner_menu_list ul.geko_depth_3_inner_menu_list{
  position: absolute;
  left: calc(100% + 20px);
  top: 0;
  background: #FFFFFF;
  padding: 20px 15px;
  border-radius: 10px;
  min-width: 220px;
  opacity: 0;
  display: none;
}
.geko_menu_bar ul.geko_depth_1_inner_menu_list li ul.geko_depth_2_inner_menu_list li:hover ul.geko_depth_3_inner_menu_list{
  opacity: 1;
  display: flex;
}
.geko_menu_bar.geko_mega_menu .geko_mega_menu_item.drop_arrow_menu_item .geko_mega_menu_item_inner{
  width: 75vw;
  height: 50vh;
  left: 100%;
  top: 100%;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 50px;
  min-height: 350px;
  z-index: -1;
  display: none;
}

.geko_menu_bar.geko_mega_menu .geko_mega_menu_item.drop_arrow_menu_item:hover .geko_mega_menu_item_inner{
  display: flex;
}
.geko_mega_menu_item.drop_arrow_menu_item .geko_mega_menu_item_inner .drop_arrow_menu_item{
  flex-direction: column;
  align-items: start;
}
.geko_mega_menu_item.drop_arrow_menu_item .geko_mega_menu_item_inner .drop_arrow_menu_item .drop_arrow{
  display: none;
}
.geko_mega_menu_item.drop_arrow_menu_item .geko_mega_menu_item_inner .geko_depth_2_inner_menu_list{
  position: relative;
  top: 0;
  left: 0;
  opacity: 1;
  padding: 0;
  background: transparent;
  display: flex;
  z-index: 1;
  flex-direction: column;
  display: flex;
  z-index: 1;
}
.geko_mega_menu_item.drop_arrow_menu_item .geko_mega_menu_item_inner .geko_depth_2_inner_menu_list .geko_depth_3_inner_menu_list{
  position: relative;
  top: 0;
  left: 0;
  opacity: 1;
  background: transparent;
  padding: 0;
  display: flex;
  z-index: 1;
  flex-direction: column;
}




/*geko Mega menu css end here*/

/* Banner */
.h_home_banner{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 75px 0;
}
.banner_image img{
  max-height: 400px;
  object-fit: contain;
}
.banner_content .short_heading h5{
  color: #0FBDC8;
  font-family: var(--Outfit-500);
  font-size: 18px;
  line-height: 26px; 
  text-transform: uppercase;
  margin-bottom: 15px;
}
.banner_content  h1{
  color: #000D44;
  font-size: 48px;
  line-height: 58px;

}
.swiper_page_menu{
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  left: 0;
}
.swiper_page_menu::before{
  position: absolute;
  top: 0;
  left: 28px;
  transform: translateY(10px);
  content: "";
  height: 92px;
  width: 2px;
  border-radius: 10px;
  background: linear-gradient(180deg, #0FBDC8 0%, rgba(0, 0, 0, 0) 100%);

}
.swiper_page_menu::after{
  position: absolute;
  bottom: 0;
  left: 30px;
  transform: translateY(-200%);
  content: "";
  height: 92px;
  width: 2px;
  border-radius: 10px;
  background: linear-gradient(0deg, #0FBDC8 0%, rgba(0, 0, 0, 0) 100%);
}
.swiper_page_menu .swiper-pagination-bullet{
  width: 50px;
  height: 50px;
  border: 2px solid #D8DDE1;
  background-color: var(--default-white);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  opacity: 1;
}
.swiper_page_menu .swiper-pagination-bullet.swiper-pagination-bullet-active{
  border: 2px solid #0FBDC8;
}
.swiper_page_menu .swiper-pagination-bullet img{
  width: 30px;
}
.swiper_page_menu .swiper-pagination{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
/* Start Popular Categories*/
.swiper-container{
  overflow-x: hidden;
}
.slider_arrow{
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--default-white);
  padding-left: 25px;
}
.slider_arrow .arrow_swiper{
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D8DDE1;
  background: #F5F7FA;
  border-radius: 100%;
}

/* Start Benefits*/
.benefits_inside_us{
  display: flex;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  background: #FFFFFF01;
  border-radius: 60px;
  padding: 20px 40px;
}
.benefits_inside_us .benefits_box{
  display: flex;
  align-items: center;
  width: calc(100% / 4);
  padding-left: 25px;
  gap: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
	padding-right: 10px;
}
.benefits_inside_us .benefits_box:not(:last-child){
  border-right: 1px solid #D8DDE1;
}
.benefits_inside_us .ben_icon img{
  min-width: 50px;
  filter: brightness(0) saturate(100%) invert(57%) sepia(92%) saturate(420%) hue-rotate(135deg) brightness(88%) contrast(94%);
}
  .benefits_inside_us .ben_icon {
    width: 60px;
    height: 60px;
    background: #F5F7FA;
    border-radius: 100%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;

}
.benefits_inside_us .benefits_box:first-child {
 padding-left: 0;
}
.benefits_inside_us .ben_content h6{
  color: #000D44;
  font-family: var(--nexabold--700);
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
}
.benefits_inside_us .ben_content p{
  font-size: 14px; line-height: 20px;
}

/* End Benefits*/
.category_box{
	width: 100%;
  background: #F5F7FA;
  border-radius:20px;
  height: 100%;
  padding: 20px 0 0;
}
.category_box .product_cate_image{
  text-align: center;
  margin-bottom: 12px;
}
.category_box .product_cate_image img{
  max-width: 120px;
transform: scale(1);
	transition: all 0.5s;
}
.category_box:hover .product_cate_image img{
	transform: scale(1.1);
}
.product_cate_name{
  border-top: 1px solid #ffffff;
  padding: 12px 10px;
}
.product_cate_name h4{
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000D44;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 50px;
}
/* End Popular Categories*/


/* Start About*/
.popular_categories .swiper-wrapper{
  height: auto;
}
.about_us_pic.about_us_pic1 img{
  width: 100%;
  height: 450px;
  border-radius: 0 0 0 50px;
  object-fit: cover;
	object-position:top;
}
.about_us_pic.about_us_pic2 img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 50px 0;
  overflow: hidden;
}
.h_about_us .theme_heading{
  margin-bottom: 25px;
}
.about_us_pic2{height: 100%;}

.about_us_content{
	padding-top:25px;
}

.about_us_content p{
	font-size:17px;
	line-height:30px;
}

/* END About*/

/* Start CTA*/
.CTA_wrapper_align .CTA_image_wrapper{
  padding: 20px 0 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 450px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
}
.button_bg::before{
  content: "";
    position: absolute;
    top: 0px;
    left: 13px;
    z-index: -1;
    background: linear-gradient(180deg, #f9fafdb0 0%, rgba(249, 250, 253, 0) 78.65%);
    backdrop-filter: blur(2px);
    width: 80%;
    height: 30px;
    border-radius: 20px;
    filter: blur(2px);
}
.CTA_wrapper_align:nth-child(odd) .CTA_image_wrapper{
  border-radius: 0 20px 20px 0;
}
.CTA_wrapper_align:nth-child(odd) .CTA_image_wrapper .h_theme_button{
  box-shadow: 0px 5px 16px 0px #0000004D;
  background: linear-gradient(180deg, #04CE78 37.5%, #DDFFF1 100%);
 
}
.CTA_wrapper_align:nth-child(odd) .CTA_image_wrapper .h_theme_button:hover{
	background: linear-gradient(360deg, #04CE78 37.5%, #DDFFF1 100%);
}
.CTA_wrapper_align:nth-child(even) .CTA_image_wrapper{
  border-radius: 20px 0 0 20px;
}
.CTA_wrapper_align:nth-child(even) .CTA_image_wrapper .h_theme_button{
  box-shadow: 0px 3px 15px 0px #B0BAD3;
  background: linear-gradient(180deg, #1F5FFF 37.5%, #E3EBFF 100%);
}
.CTA_wrapper_align:nth-child(even) .CTA_image_wrapper .h_theme_button:hover{
	 background: linear-gradient(360deg, #1F5FFF 37.5%, #E3EBFF 100%);
}
.CTA_image_wrapper::before{
  content: "";
  background: #00000020;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.CTA_wrapper_align:nth-child(even) .CTA_image_wrapper::before{
  border-radius: 20px 0 0 20px;

}
.CTA_wrapper_align:nth-child(odd) .CTA_image_wrapper::before{
  border-radius: 0 20px 20px 0;

}
.cta_content_box{
  margin-left: 50px;
}
.cta_content_box h2{
  color: var(--default-white);
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 20px;
}
/* End CTA*/
/* Start Partner Brands*/
.our_partner_section.common_padding{
	 background: #0fbdc8;
    padding: 20px 0;
}
.our_partner_section .partner_group {
	    display: flex;
    align-items: center;
	flex-wrap: wrap;
}
.partner_group .partner_logoes {
    width: calc(100% / 6);
}
.partner_group .partner_logoes img{
    max-height: 100px;
    width: 100%;
}
/* END Partner Brands*/
/* Start Call us*/
.contact_to_us{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.call_us_contact{
  max-width: 65%;
  color: #FFFFFF;
}
.call_us_contact,
.call_us_contact h2,
.call_us_contact p{
  color: var(--default-white);
 
}
.call_us_contact li{
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid  rgba(0, 13, 68, 1);
}
.call_us_contact li p{
	font-size:20px;
	font-weight:500;
}
.call_us_contact li:last-child{
  border: none;
}
.call_us_contact li:first-child{
  border: none;
}
.call_us_contact p a{color: #fff;}
.call_us_contact p:hover a{color: rgba(0, 13, 68, 1);}
.form_contact_us{
border: 1px solid rgba(7, 86, 158, 0.368627451);
    border-radius: 0 0 20px 20px;
    margin-top: 0;
	padding: 20px 10px;
}
.form_contact_us p{
  margin: 0;
}
.form_contact_us .form-group{
  margin-bottom: 15px;
}
.form_contact_us .form-group .form-control{
  background: transparent;
  border: none;
  border-bottom: 1px solid #AFAFAF;
  color: #AFAFAF;
  border-radius: 0;
  font-family: Outfit;
  font-size: 15px;
  line-height: 100%;
  font-family: var(--Outfit-400);
  padding: 12px 0;
  box-shadow: none;
}
.form_contact_us .form-group .form-control:focus,
.form_contact_us .form-group .form-control:active{
	border-bottom-color: #0fbdc8;
}
.wpcf7-response-output{
	    margin: 15px 0 0 0 !important;
    padding: 0 !important;
    border: none !important;
    color: red !important;
}
.form_contact_us .form-group textarea.form-control{
  height: 90px;
  resize: none;
}
.form_contact_us .form-group .form-control::placeholder{
  color: #AFAFAF;
}
.form_contact_us .form_field .form_button{
  margin-top: 15px;
}
.h_theme_produc_box_wrapper{
  margin-bottom: 20px;
}
.cate_name_tab_list{
  padding-left: 20px;
  background-color: var(--default-white);
}
.cate_name_tab_list ul li button{
  background: linear-gradient(180deg, #C2D4FF 37.5%, #F0F4FF 100%);
  box-shadow: 0px 2px 10px 0px #B8BFD080;
  color: var(--default-black);
  position: relative;
  z-index: 0;
  padding: 10px 25px;
}
.cate_name_tab_list ul{
  gap: 12px;
}

.cate_name_tab_list ul li button::before{
  content: "";
  position: absolute;
  top: 0px;
  left: 13px;
  z-index: -1;
  background: linear-gradient(180deg, #f9fafdb0 0%, rgba(249, 250, 253, 0) 78.65%);
  backdrop-filter: blur(2px);
  width: 80%;
  height: 30px;
  border-radius: 20px;
  filter: blur(5px);
}
.cate_name_tab_list ul li button.active::before{
  content: none;
}
.cate_name_tab_list ul li button.active{
  background: linear-gradient(180deg, #0FBDC8 37.5%, #E3EBFF 100%);
  box-shadow: 0px 3px 15px 0px #B0BAD3;
  color: var(--button-color);

}
/* End Call us*/

/* Start Top Equipments*/
.not_new_arrival .CTA_content .cash_on_delivery{
  color: var(--heading-short-color);  
}
.not_new_arrival .CTA_content h3{
  color: var(--heading-color);
}
/* End Top Equipments*/

/*Start Look View CTA*/
.quick_view_wrapper{
  position: relative;
}
.quick_view_wrapper::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(15, 189, 200, 0.1), rgba(15, 189, 200, 0.1)),
  linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.5s;
  opacity: 0;
}
.quick_view_wrapper:hover::before{
  transform: scale(1);
  transition: all 0.5s;
  opacity: 1;
}
.quick_view_wrapper .quick_view_content{
  top: 50%;
  transform: translate(-50%);
  left: 50%;
  position: absolute;
  text-align: center;
  transform: scale(0);
  transition: all 0.5s;
  opacity: 0;
}
.quick_view_wrapper .quick_view_content h3{
  color: var(--default-white);
  margin-bottom: 15px;
}
.quick_view_wrapper:hover .quick_view_content{
  opacity: 1;
  transform: translate(-50%) scale(1);
}
.look_view .container-fluid,
.CTA_section .container-fluid{
  padding: 0;
}
@media only screen and (min-width: 1900px) {
  .look_view .container-fluid{
    padding: 0 12px;
    max-width: 1920px;
  }
  .CTA_section .container-fluid{
    padding: 0 12px;
    max-width: 1920px;
  }
  .CTA_section .container-fluid .CTA_image_wrapper{
    border-radius: 20px;
  }
  .CTA_section .container-fluid .CTA_image_wrapper::before{
    border-radius: 20px;

  }
}
/*Start Look View CTA*/

/*Start New Arrival*/
.h_theme_produc_box a.h_theme_produc_box_a{
	width: 100%;
	position: relative;
	overflow: hidden;
}
.h_theme_produc_box a.h_theme_produc_box_a::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255,255,255,.2);
	border-radius: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.h_theme_produc_box:hover a.h_theme_produc_box_a::before {
	-webkit-animation: circle .75s;
	animation: circle .75s;
}
@-webkit-keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
@keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
.h_theme_produc_box .h_theme_product_image{
  background: #F6F7FB;
  border-radius: 20px;
  padding: 15px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 260px;
}
.h_theme_produc_box .h_theme_product_content{
  padding: 15px 0;
}
.h_theme_product_content .cate_pro_name{
  font-size: 16px;
  line-height: 24px;
  color: #788094;
	width: 100%;
}
.h_theme_product_content .cate_pro_name:hover{
  color: var(--heading-color);
}
.h_theme_product_content h5{
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 50px;
  color: rgb(0, 13, 68);
}
.h_theme_product_image img{
  max-height: 250px;
  object-fit: cover;
}
.CTA_log_equipment{
  background-repeat: no-repeat;
  min-height: 100%;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding: 35px 25px;
}
.CTA_log_equipment .CTA_content{
  width: 100%;
}
.CTA_log_equipment .h_theme_button{
  font-size: 14px;
  padding: 11px 32px;
  font-family: var(--Outfit-500);
}
.CTA_log_equipment .free_shipping_text{
  font-family: var(--Outfit-500);
}
.CTA_log_equipment .cash_on_delivery{
  font-family: var(--Outfit-400);
  color: var(--default-white);
  margin: 10px 0;
  display: block;
}
.CTA_log_equipment h3{
  color: var(--default-white);
  margin-bottom: 20px;
}
/*End New Arrival*/

/* Start CTA */
.h_cta_manufac_wrapper_box{
  height: 100%;
  margin-top: 20px;
}
.h_cta_manufac_wrapper_box:nth-child(even) .h_cta_manufac_wrapper{
  background-color: #F3EEE8;
}
.h_cta_manufac_wrapper{
  display: flex;
  align-items: center;
  display: flex;
    align-items: center;
    padding: 15px 30px;
    background: #E3EFED;
    border-radius: 25px;
}
.h_cta_manufac_wrapper .h_cta-left_wrap span{
  color: var(--heading-short-color);
}
.h_cta_manufac_wrapper .h_theme_button{
  font-family: var(--Outfit-500);
}
.h_cta_manufac_wrapper p{
  margin-top: 5px;
}
.h_cta_manufac_wrapper p,
.h_cta_manufac_wrapper p a:hover{
  font-size: 18px;
  line-height: 26px;
  font-family: var(--Outfit-500);
  color: var(--heading-color);
}
.h_cta_manufac_wrapper p a{
  color: var(--heading-short-color);
}
/* End Our CTA */


/* Start Our Perfomance */
.performance_box{
  position: relative;
}
.performance_box:not(:first-child)::before{
  content: "";
  height: 50%;
  width: 1px;
  position: absolute;
  top: 65%;
  left: 0;
  color: var(--default-black);
  transform: translateY(-50%);
  border: 1px solid var(--default-black);
}
.perfo_icon img{
  width: 50px;
  margin-bottom: 20px;
}
.performance_box h4,
.performance_box .count_up_wrap{
  font-family: var(--nexabold--600);
  font-size: 26px;
  line-height: 32px;
  color: var(--heading-short-color);

}
.performance_box .count_up_wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.performance_box h6{
  font-family: var(--Outfit-500);
  font-size: 20px;
  line-height: 26px;
  text-transform: uppercase;
  color: var(--default-black);
  font-weight: 500;
  margin-top: 5px;
}
/* End Our Perfomance */

/* Global Location */

.energy-location {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: url(../images/energy-location-bg.jpg) no-repeat 0 0;
  background-size: cover;
}
.energy-location .custom-heading h6 span{
  background: linear-gradient(90deg, rgba(253,29,29,1) 36%, rgba(253,27,27,1) 45%, rgba(248,195,1,1) 90%)
}

.energy-rightcont{position: relative; text-align: right;}
.energy-location__wrap {
  justify-content: center;
}

.energy-location__single {
  width: calc(2 * calc(1/10 * 100%));
  padding: 0 8px;
  position: relative;
  transition: width 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
}

.energy-location__single.active {
  width: calc(10 * calc(1/10 * 100%));
  transition: width 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
}

.energy-location__single .img-part img {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
}

.energy-location__single .content-part {
  position: absolute;
  bottom: 15px;
  left: 30px;
  opacity: 0;
  width: 70%;
  padding: 15px;
  z-index: 99;
}

.energy-location__single.active .content-part {
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.38, 0.005, 0.215, 1) 0.3s;
}

.energy-location__single h5 {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  position: absolute;
  left: 20px;
  bottom: 25px;
  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--clr-white);
  z-index: 1;
  font-family: var(--ff-body);
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.38, 0.005, 0.215, 1) 0.3s;
}

.energy-location__single.active h5 {
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.38, 0.005, 0.215, 1) 0.2s;
}

@supports (writing-mode:sideways-lr) {
  .energy-location__single h5 {
    writing-mode: sideways-lr;
    transform: unset;
  }
}

.energy-location__single h6 {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--clr-white);
  z-index: 1;
  font-family: var(--ff-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.energy-location__single .img-part {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.energy-location__single .img-part::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.43) 100%);
  bottom: 0;
  left: 0;
  z-index: 1;
  border-radius: 10px;
}

.energy-location__single .img-part::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -160%;
  position: absolute;
  top: 0;
  transform: skewX(25deg);
  width: 50%;
  z-index: 2;
  border-radius: 50%;
}

.energy-location__single:hover .img-part::after {
  -webkit-animation: shine-img 0.85s;
  animation: shine-img 0.85s;
}

.loc-define {
  color: #fff;
  text-transform: capitalize;
  font-size: 18px;
}

@-webkit-keyframes shine-img {
  100% {
    left: 125%;
  }
}

@keyframes shine-img {
  100% {
    left: 125%;
  }
}

.energy-location__single .address-part li,
.energy-location__single .address-part li a{
    font-size: 16px;
    display: flex;
    margin-top: 8px;
    gap: 10px;
	
}

.energy-location__single .address-part li a {
  color: var(--clr-white);
}


.about_left-cont .custom-heading h6 span {
  background: linear-gradient(90deg, rgba(253,29,29,1) 36%, rgba(253,27,27,1) 45%, rgba(248,195,1,1) 90%);
}


/*Start our Global Partners*/
.h_theme_clients{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}
.global-clients__mob,
.global-certificates__mob {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.global-clients__mob>*,
.global-certificates__mob>* {
  background-color: #fff;
  padding: 10px;
  flex: 0 0 auto;
  width: 15%;
  border-radius: 10px;
}

.global-clients__single img,
.global-certificates__single img {
  height: 75px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}
/*End our Global Partners*/

/* Start site blog */
.h_theme_blog_box_wrapper{
  height: 100%;
  margin-top: 20px;

}
.h_theme_blog_box_wrapper .h_theme_blog_box{
  border: 1px solid #E7E7E7;
  box-shadow: 0px 4px 20px 0px #0000000A;
  padding: 15px;
  border-radius: 20px;
}
.h_theme_blog_box_wrapper .h_theme_blog_box .h_theme_blog_image{
	overflow: hidden;
	border-radius: 20px;
}
.h_theme_blog_box_wrapper .h_theme_blog_box .h_theme_blog_image img{
	transform: scale(1);
	transition: all 0.5s;
}
.h_theme_blog_box_wrapper .h_theme_blog_box:hover .h_theme_blog_image img{
	transform: scale(1.1);
	transition: all 0.5s;
}
.h_theme_blog_box_wrapper .h_theme_blog_box .blog_box_wrapper_a{
	width: 100%;
}
.h_theme_blog_box_wrapper .h_theme_blog_image img{
  max-height: 220px;
  border-radius: 20px;
  object-fit: cover;
	width: 100%;
}
.h_theme_blog_box_wrapper .h_theme_blog_content{
  padding: 15px 10px 20px 10px;
}
.h_theme_blog_box_wrapper .h_theme_blog_content h4{
  margin: 12px 0 20px 0;
}
.h_theme_blog_content h4 {
  font-size: 20px;
  line-height: 28px;
  font-family: var(--nexabold--500);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 60px;
  color: rgb(0, 13, 68);
}
.h_theme_blog_box_wrapper .h_theme_blog_content ul,
.h_theme_blog_box_wrapper .h_theme_blog_content ul li{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #788094;
	flex-wrap: wrap;
}
.h_theme_blog_box_wrapper .h_theme_blog_content ul li span{
  color: #0FBDC8;
}
.h_theme_blog_box_wrapper .h_theme_blog_content ul li:not(:last-child){
  position: relative;
  padding-right: 15px;
  margin-right: 5px;

}
.h_theme_blog_box_wrapper .h_theme_blog_content ul li:not(:last-child)::before{
  content: "|";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 100%;
  color: #D8DDE1;

}
.theme_blog_section  .pagination,
.woocommerce-pagination ul.page-numbers{
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
} 
.theme_blog_section  .pagination .page-numbers,
.woocommerce-pagination ul.page-numbers a.page-numbers,
.woocommerce-pagination ul.page-numbers span.page-numbers{
	    width: 25px;
    height: 25px;
    background: var(--button-gradient-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 12px;
    color: #FFFFFF;
}
.theme_blog_section  .pagination .page-numbers.next,
.theme_blog_section  .pagination .page-numbers.prev,
.woocommerce-pagination ul.page-numbers a.page-numbers.prev,
.woocommerce-pagination ul.page-numbers a.page-numbers.next{
	width: 75px;
    border-radius: 5px;
}
.h_theme_product_image{
	overflow: hidden;
}
.h_theme_product_image img{
	transition: all 0.5s;
}
.h_theme_produc_box:hover .h_theme_product_image img{
	    transform: scale(1.1);
}

/* END site blog */




.site_footer{
  padding: 80px 0 35px 0;
  background-image: url(../images/footerbg-min.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;  
}
.footer_list ul  li{
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.footer_list ul li .icon{
  width: 24px;
  height: 24px;
  fill: #0FBDC8;
  color: #0FBDC8;
  font-size: 20px;
  min-width: 25px;
}
.footer_box ul  li  a{
  color: #788094;
}
.footer_box .nav-link{padding: 0;}
.footer_box ul  li a:hover,
.footer_box ul  li a:hover::before {
  color: #000D44;
}
.menu_list li{
  margin-top: 10px;
  transition: all 0.5s;
}
.menu_list li a{
  position: relative;
  margin-left: 15px;
}
.menu_list li a::before{
  content: '\f054';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: -20px;
  font-size: 16px;
  width: 20px;
  height: 20px;  
  color: #788094;
}
.menu_list li:hover{
  margin-left: 15px;
}
.footer_heading h5{
  color: var(--heading-color);  
  margin-bottom: 30px;
  position: relative;
  text-transform: capitalize;
}
.footer_heading h5::before{
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 85%;
  height: 2px;
  width: 92px;
  border-radius: 10px 0px 0px 0px;
  background: linear-gradient(90deg, #0FBDC8 0%, rgba(0, 0, 0, 0) 100%);
}
.footer_form .form_field{
  margin-bottom: 10px;
  padding: 0 5px;
}

.footer_form .form_field textarea{
  height: 90px;
  border-radius: 20px;
  resize: none;
}
.footer_form .form_field .h_theme_button{
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  text-align: center;
  min-width: 130px;
  min-height: 40px;
} 
.footer_form .form-control{
  border-radius: 35px;
  padding: 10px 15px;
  box-shadow: none;
}
.copy_right_us{
  background: #050C14;
  padding: 12px 0;
  border: 1px solid transparent;
  border-top: 1px solid #8BC5D240;
  border-bottom: 1px solid #8BC5D240;
}
.copy_right_us p{
  color: var(--default-white);
}
.copy_right_us p a{
  color: #0FBDC8;
}
.copy_right_us p a:hover{
  color: var(--default-white);
}
.copy_right_us .footer_list ul{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.copy_right_us .footer_list ul li{
  margin: 0;
}
.copy_right_us .footer_list ul li a{
  color: var(--default-white);
}
.copy_right_us .footer_list ul li a:hover{
  color: var(--heading-short-color);
}
.social_iconbox ul li a {
  background: var(--button-gradient-color);
  height: 36px;
  width: 36px;
  padding: 8px 3px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  display: block;
  font-size: 14px;
  margin: 0;
  scale: 1;
  transition: scale 0.3s ease-in-out;
}
.social_iconbox ul {
  gap: 15px;
  display: flex;
}
.social_iconbox{
  position: relative;
  width: 100%;
  padding-top: 25px;
}
/* Start about us */
.theme_site_inner{
  position: relative;
}
.theme_site_inner > img {
  width: 100%;
}
.theme_site_inner::after {
  content: "";
  position: absolute;
  background: rgba(0,0,0,0.5);
  transform: matrix(-1, 0, 0, 1, 0, 0);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.theme_site_inner .inner_banner_text {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.inner_banner_text ul {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
}
.inner_banner_text ul li {
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #ffffff;
  position: relative;
}
.inner_banner_text ul li:not(:last-child)::before {
  content: "\f178";
  position: absolute;
  top: 2px;
  right: -30px;
  font-size: 20px;
  width: 20px;
  height: 20px;
  font-family: "Font Awesome 5 Free";  
  font-weight: 900;
}
.inner_banner_text ul li.active a {
  color: #0fbdc8;
}
.inner_banner_text ul li a {
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #ffffff;
  display: block;
}
.inner_banner_text h1,
.inner_banner_text h2{
  color: var(--button-color);    
}
.about_us_cross_words .about_us_our_line_up .about_story_content_box{
  padding-left: 20px;
  padding-top: 20px;
}
.about_us_cross_words .about_us_our_line_up:nth-child(odd) .about_story_content_box{
  order: 0;
  padding-top: 20px;
  padding-right: 20px;
}
.about_us_cross_words .about_us_our_line_up:nth-child(odd) .about_story_image_box{
  order: 1;
}
.about_us_cross_words .about_story_image_box img{
  border-radius: 20px;
}
.become_distributor{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bcform .form-group:nth-child(odd){
  padding-right: 5px;
}
.bcform .form-group:nth-child(even){
  padding-left: 5px;

}

/* END about us */

.product_box_wrapper img{
	    max-height: 220px;
}
.product_box_wrapper .product_heading{
	display: block;
}
.product-main {
  padding: 60px 0;
}
.product-main h3.p-title {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: #ffffff;
  background: #0fbdc8;
  padding: 10px 20px 10px 20px;
	border-radius: 20px 20px 0 0;
	text-align: center;
}
.product-main .p-box {
  margin-bottom: 24px;
}
.product-main .p-box h5 {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 20px;
  color: #7e7e7e;
  margin-top: 20px;
}
.product-main .p-box h5 i {
  color: #ffc107;
}
.product-main .p-box h5 i:last-child {
  margin-right: 10px;
}
.product-main .p-box h4 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    text-transform: capitalize;
    color: #000000;
    margin: 15px 0;
	transition: all 0.5s;
	
}
.product-main .p-box p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  text-transform: capitalize;
  color: #7e7e7e;
  margin-bottom: 20px;
}
.product-main .accordion {
  width: 306px;
  margin: 0 auto;
}
.product_box_wrapper{
	    padding: 20px 10px;
    border: 1px solid #0fbdc826;
    border-radius: 20px;
	transition: all 0.5s;
}
.product_box_wrapper:hover{
	box-shadow: -4px 3px 18.6px 6.4px rgba(236, 236, 236, 1);
}
.product_box_wrapper:hover .product_heading h4{
	color: #0fbdc8;
}
.product-main .accordion-toggle {
  cursor: pointer;
  margin: 0;
  padding: 20px 30px 0 10px;
  position: relative;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #231f20;
}
.product-main .accordion-toggle:before {
  content: "+";
  position: absolute;
  right: 16px;
  top: 22px;
  width: 0;
  height: 0;
  color: #6e6e6e;
}
.product-main .accordion-toggle.active {
  color: #000;
}
.product-main .accordion-toggle.active:after {
  content: "";
  position: absolute;
  right: 4px;
  top: 30px;
  width: 13px;
  height: 2px;
  background-color: #d0d0d0;
}
.product-main .accordion-toggle.active:before {
  display: none;
}
.product-main .accordion-content {
  display: none;
}
.product-main .p-accordian .acc:not(:first-child) h4.accordion-toggle {
  border-top: 1px solid #afafaf !important;
  margin-top: 20px;
}
.product-main .p-accordian .acc:last-child {
  border-bottom: 1px solid #afafaf !important;
  padding-bottom: 20px;
}
.product-main .p-accordian ul.p-list {
  padding-left: 10px;
  padding-top: 10px;
}
.product-main .p-accordian ul.p-list li:not(:first-child) {
  margin-top: 10px;
}
.product-main .p-accordian ul.p-list li a {
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #808080;
}
.product-main ul.h-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.product-main ul.h-pagination li a {
  text-decoration: none;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}
.product-main ul.h-pagination li a.active {
  color: #0fbdc8;
}
.product-main ul.product-categories li {
  position: relative;
}
.product-main ul.product-categories li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #231f20;
  text-decoration: none;
  padding: 15px 0;
  transition: all 0.4s ease-in;
  border-bottom: 1px solid #afafaf !important;
  padding-left: 47px;
}
.product-main ul.product-categories li i.fa.fa-plus {
  position: absolute;
  top: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 17px;
  cursor: pointer;
  padding-right: 0;
  display: none;
}
.product-main ul.product-categories li ul.children {
  max-height: 0;
  transition: max-height 0.15s ease-out;
  overflow: hidden;
  background: rgba(15, 189, 200, 0.0588235294);
}
.product-main ul.product-categories li ul.children li a {
  padding: 15px;
}
.product-main ul.product-categories li.cat-item.cat-parent i.fa.fa-plus {
  display: block;
}
.product-main ul.product-categories li.active ul.children {
  max-height: 500px;
  transition: max-height 0.25s ease-in;
}
.product-main ul.product-categories li.active i.fa.fa-plus {
  transform: rotate(45deg) translate(0px, 0px);
}

.p-detail {
  padding: 50px 0;
}
.p-detail figure {
  box-shadow: 0 0 1px 0px #000;
}
.p-detail .sig-form {
  padding-top: 30px;
}
.p-detail-img ul {
  display: flex;
  gap: 40px;
  align-items: center;
}
.p-detail-img ul li img {
  margin-bottom: 0;
}
.p-detail-text h3,
.p-detail-text h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  text-transform: capitalize;
  color: #000000;
  margin: 0 0 36px;
}
.p-detail-text h5 {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 20px;
  color: #7e7e7e;
  margin-top: 20px;
  display: inline-block;
  margin-bottom: 50px;
}
.p-detail-text h5 i {
  color: #ffc107;
}
.p-detail-text h6,
.p-detail-text span.sku_wrapper {
  background: #f5f5f5;
  border: 1px dashed #0fbdc8;
  border-radius: 6px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-transform: capitalize;
  color: #000000;
  padding: 10px;
  width: 306px;
  margin-bottom: 30px;
}
.p-detail-text h4,
.p-detail-text span.posted_in {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 10px;
}
.p-detail-text h4 span,
.p-detail-text h4 a,
.p-detail-text span.posted_in span,
.p-detail-text span.posted_in a {
  background: #e6e6e6;
  border: 0.7px dashed #0fbdc8;
  border-radius: 4px;
  padding: 5px;
  color: #000000;
  text-decoration: none;
  margin: 0 5px;
}
.p-detail-text .product_meta {
  display: flex;
  flex-direction: column;
  margin: 0 0 30px;
}
.p-detail-text p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 0;
}

.p-detail-list {
  padding: 50px 0;
}
.p-detail-list h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  text-transform: capitalize;
  color: #000000;
  text-align: center;
  margin-bottom: 44px;
}
.p-detail-list .p-box h5 {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 24px;
  color: #7e7e7e;
}
.p-detail-list .p-box h5 i {
  color: #ffc107;
  margin-right: 5px;
}
.p-detail-list .p-box h5 i:last-child {
  margin-right: 10px;
}
.p-detail-list .p-box h4 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 15px;
  max-width: 270px;
  min-height: 44px;
  margin-inline: auto;
	    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sig-form h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  text-transform: capitalize;
  color: #000000;
  margin: 0 0 36px;
  text-align: center;
}

.blog-list .b-box {
  position: relative;
  margin-bottom: 30px;
}
.blog-list .b-box:hover {
  transition: all 1s ease-in-out;
}
.blog-list .b-box:hover:after {
  height: 100%;
  transition: all 0.5s ease-in-out;
}
.blog-list .b-box:hover a {
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.blog-list .b-box:hover a.b-btn {
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.blog-list .b-box:hover a.b-btn img {
  filter: brightness(22);
  transition: all 0.3s ease-in-out;
}
.blog-list .b-box:hover h3 {
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.blog-list .b-box:hover ul li {
  color: #fff;
}
.blog-list .b-box:hover ul li img {
  filter: brightness(22);
}
.blog-list .b-box::after {
  content: "";
  background-color: #0fbdc8;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 0;
  position: absolute;
  z-index: -1;
  transition: all 0.5s ease-in-out;
}
.blog-list .b-box ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  margin-top: 12px;
  padding-inline: 10px;
}
.blog-list .b-box ul li a {
  text-decoration: none;
  padding: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #000000;
  transition: all 0.5s ease-in-out;
}
.blog-list .b-box ul li a img {
  margin-right: 5px;
}
.blog-list .b-box h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 16px;
  color: #000000;
  padding-inline: 10px;
  transition: all 0.5s ease-in-out;
  padding-right: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 60px;
}
.blog-list .b-box a.b-btn {
	font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
  color: #1a1a1a;
  display: inline-block;
  text-decoration: none;
  transition: all 1s ease-in-out;
  padding-inline: 10px;
  padding-bottom: 10px;
}
.blog-list .b-box a.b-btn img {
  margin-left: 15px;
  filter: brightness(1);
  transition: all 0.3s ease-in-out;
}
.blog-list ul.h-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.blog-list ul.h-pagination li a {
  text-decoration: none;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}
.blog-list ul.h-pagination li a.active {
  color: #0fbdc8;
}

.blog-detail h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 38px;
  color: #0fbdc8;
  margin-bottom: 0;
  margin-top: 20px;
}
.blog-detail ul.dates {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  margin-top: 10px;
  justify-content: space-between;

}
.blog-detail ul.dates li a {
  text-decoration: none;
  padding: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #000000;
  transition: all 0.5s ease-in-out;
}
.blog-detail ul.dates li img {
  margin-right: 5px;
	max-width: 20px;
}
.blog-detail p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.015em;
  color: #575757;
}
.blog-detail h4 {
  margin-bottom: 5px;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #0fbdc8;
}
.blog-detail ul.dates li {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	color: #666;
	display: flex;
	align-items: center;
    min-width: 140px;	
}
.blog-detail .tag-box {
  margin-top: 40px;
}
.blog-detail .tag-box h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 15px;
}
.blog-detail .tag-box ul {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 5px;
    column-gap: 5px;
    row-gap: 5px;
}
.blog-detail img{
	border-radius: 10px;
}
.blog-detail .tag-box ul li a {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-transform: capitalize;
    color: #000000;
    padding: 4px 8px;
    text-decoration: none;
    border: 1px dashed #0fbdc8;
    border-radius: 4px;
    display: inline-block;
}
.blog-detail form.comment-box {
  margin-top: 40px;
}
.blog-detail form.comment-box h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 12px;
}
.blog-detail form.comment-box p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-transform: capitalize;
  color: #2e2e2e;
  margin-bottom: 30px;
}
.blog-detail form.comment-box input:not([type=submit]) {
  background: #f1f1f1;
  border: 1px solid #dad8d8;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
}
.blog-detail form.comment-box textarea {
  background: #f1f1f1;
  border: 1px solid #dad8d8;
  border-radius: 4px;
  padding: 10px;
  height: 158px;
  width: 100%;
}
.blog-detail form.comment-box .comment,
.blog-detail form.comment-box .name,
.blog-detail form.comment-box .email,
.blog-detail form.comment-box .site {
  margin-bottom: 30px;
}
.blog-detail form.comment-box label {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-transform: capitalize;
  color: #2e2e2e;
  margin-bottom: 5px;
}
.blog-detail form.comment-box label.p-check {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}
.blog-detail form.comment-box label.p-check input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  border: 1px solid #0fbdc8;
}
.blog-detail form.comment-box input[type=submit] {
  border: none;
  padding: 10px 60px;
}
.blog-detail .b-sec form.blog-search {
  position: relative;
  margin-bottom: 55px;
}
.blog-detail .b-sec form.blog-search input[type=text] {
  width: 100%;
  height: 57px;
  padding: 15px 16px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  color: #000000;
  background-color: #fff;
  border: 1px solid rgba(7, 86, 158, 0.368627451);
}
.blog-detail .b-sec form.blog-search button {
  position: absolute;
  right: 20px;
  top: 50%;
  border: none;
  outline: none;
  background: transparent;
  translate: 0 -50%;
}
.blog-detail .b-sec h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 20px;
}
.blog-detail .b-sec ul.category-items li {
  border-top: 1px solid rgba(7, 86, 158, 0.368627451);
}
.blog-detail .b-sec ul.category-items li a {
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 70px;
  color: #000000;
  display: flex;
  align-items: center;
}
.blog-detail .b-sec ul.category-items li a i {
  margin-right: 15px;
}
.blog_side_bar .side_box_heading_wrapper{
  padding: 12px;
  border-radius: 10px 10px 0px 0px;
text-align: center;
	background: #0fbdc8;
}
.side_bar_box .side_box_heading_wrapper h4{
	color: #ffffff;
	font-style: normal;
  font-weight: 700;	
  line-height: 24px;
  font-size: 20px;
}
.blog_side_bar ul.recent-post li p{
	font-size: 12px;
    line-height: 16px;
}
 .blog_side_bar ul.recent-post {
  border: 1px solid rgba(7, 86, 158, 0.368627451);
  padding: 20px 10px;
	    border-radius: 0px 0px 10px 10px;
}
.blog_side_bar ul.recent-post li a{
  display: flex;
  gap: 10px;
    margin-bottom: 10px;
}
.blog_side_bar ul.recent-post li img {
    max-width: 120px;
	min-width: 100px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}
.latest_blog_content h5{
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 3px;
}
.side_bar_box .category_form_wrapper{
	    padding: 10px;
}
.category_form_wrapper form select{
	padding: 12px;
    text-transform: capitalize;
}
.blog-detail h2{
	font-size: 28px;
	line-height: 34px;
	font-weight: 500;
}
.side_bar_box ul.recent-post li h5 {
  font-family: var(--nexalight-300);
  text-transform: capitalize;
  color: #0fbdc8;
	transition: all 0.5s;
}
.side_bar_box ul.recent-post li a:hover h5{
	color: rgb(0, 13, 68);
}
.blog-detail .b-sec ul.recent-post li p {
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.8);
}

.catalouge-list {
  padding: 50px 0 20px;
}
.catalouge-list .c-card {
  position: relative;
}
.catalouge-list .c-card a {
  padding: 20px 60px;
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
.catalouge-list .row {
  margin-bottom: 40px;
}

.contact-main {
  padding: 50px 0;
}
.contact-main .c-info h4 {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  color: #181d20;
  margin-bottom: 20px;
}
.side_bar_box{
	background: #FFFFFF;
	border: 1px solid #E7E7E7;
	border-radius: 15px;
	margin-bottom: 20px;
}

.contact-main .c-info ul li {
  display: flex;
  gap: 10px;
  padding-right: 100px;
}
.contact-main .c-info ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #180d44;
}
.contact-main .c-info ul li a:hover{
	color: #0fbdc8;
}
.contact-main .c-info ul li:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .contact-main .c-info ul li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.contact-main form.get-touch2 h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  color: #181d20;
  margin-bottom: 40px;
}
.contact-main form.get-touch2 label {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-transform: capitalize;
  color: #2e2e2e;
  margin-bottom: 5px;
}
.contact-main form.get-touch2 input:not([type=submit]) {
  background: #f1f1f1;
  border: 1px solid #dad8d8;
  border-radius: 4px;
  width: 100%;
  padding: 10px 15px;
  height: 40px;
}
.contact-main form.get-touch2 textarea {
  height: 158px;
  width: 100%;
  background: #f1f1f1;
  border: 1px solid #dad8d8;
  border-radius: 4px;
}
.contact-main form.get-touch2 input[type=submit] {
  border: none;
  outline: none;
  padding-inline: 60px;
  margin-top: 30px;
}

.comments-area {
  margin: 35px 0 0;
}
.comments-area h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .comments-area h2 {
    text-align: center;
  }
}
.comments-area label {
  display: table;
}

.office_globally{
	background-image: url(../images/footerbg-min.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
  position: relative;
}
.office_around_the_world{
	margin-top: 24px;
}
.globally_locations_details{
	padding: 30px 20px;
    border: 1px solid #0fbdc826;
    border-radius: 20px;
    transition: all 0.5s;
    background: #FFFFFF;
    height: 100%;
	transition: all 0.5s;
	
}
.globally_locations_details:hover{
    box-shadow: -4px 3px 18.6px 6.4px rgba(236, 236, 236, 1);
}
.globally_locations_details h4{
	position: relative;
	padding-left: 35px;
}
.globally_locations_details h4::before{
	content: '\f276';
	position: absolute;
	left: 0;
	top: 0;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	width: 20px;
	height: 20px;
}
.globally_locations_details .footer_list{
	margin-top: 10px;
}
.globally_locations_details .footer_list ul li a{
	color: #788094;
}
.globally_locations_details .footer_list ul li a:hover{
	color: rgba(0, 13, 68, 1);
}
.office_globally .theme_heading_wrap {
	margin-bottom: 20px;	
}
.distribution_meet_us .contact_seller_list{
	    display: flex;
    flex-wrap: wrap;
    gap: 15px;
	margin-top: 20px;
}
.distribution_meet_us .contact_seller_list li {
    width: calc(100% / 4 - 12px);
}
.contact_seller_list li{
	padding: 15px;
}
.contact_seller_list li h6{
	font-size: 18px;
	line-height: 26px;
	position: relative;
	font-weight: 500;
	color: rgba(0, 13, 68, 1);
}
.contact_seller_list li a{
	color: rgba(0, 13, 68, 1);
}
.contact_seller_list li a:hover{
	color: var(--heading-short-color);
}

.contact_seller_list li .seller_heading{
	    display: flex;
		position: relative;
	align-items: center;
    gap: 6px;
	border-bottom: 1px solid rgba(0, 13, 68, 1);
	padding: 5px;
    margin-bottom: 15px;
}
.contact_seller_list li .seller_heading span{
	font-size: 25px;
}

section.blog-detail p ~ h2 {
  margin-top: 40px;
}

section.blog-detail p ~ h3 {
  margin-bottom: 10px;
}

section.blog-detail .comment-respond form.comment-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: 20px 30px;
}
section.blog-detail .comment-respond form.comment-form p {
  margin: 0;
}
@media (max-width: 767px) {
  section.blog-detail .comment-respond form.comment-form {
    padding-bottom: 30px;
  }
}

section.blog-detail .comment-respond form.comment-form p.comment-notes {
  grid-column: 1/-1;
}
@media (max-width: 767px) {
  section.blog-detail .comment-respond form.comment-form p.comment-notes {
    text-align: center;
  }
}

section.blog-detail .comment-respond form.comment-form p.form-submit {
  grid-column: 1/-1;
}
@media (max-width: 767px) {
  section.blog-detail .comment-respond form.comment-form p.form-submit {
    justify-self: center;
  }
}

section.blog-detail .comment-respond form.comment-form p.comment-form-cookies-consent {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: 8px;
}
section.blog-detail .comment-respond form.comment-form p.comment-form-cookies-consent label {
  margin: 0;
}

section.blog-detail .comment-respond form.comment-form p.comment-form-comment {
  grid-column: 1/-1;
  grid-row: 4/5;
}
@media (max-width: 991px) and (min-width: 768px) {
  section.blog-detail .comment-respond form.comment-form p.comment-form-comment {
    grid-row: 5/6;
  }
}
@media (max-width: 767px) {
  section.blog-detail .comment-respond form.comment-form p.comment-form-comment {
    grid-row: 5/6;
  }
}

section.blog-detail .comment-respond form.comment-form p.comment-form-url {
  grid-column: 1/-1;
}

section.blog-detail .comment-respond form.comment-form input:not([type=submit]) {
  height: 40px;
  padding: 10px 12px;
  width: 100%;
  border: 1px solid #b5b5b5;
}

section.blog-detail .comment-respond form.comment-form input[type=submit] {
    font-family: var(--Outfit-500);
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    padding: 11px 35px;
    border-radius: 25px;
    background: var(--button-gradient-color);
    box-shadow: 0px 3px 15px 0px #B0BAD3;
    color: var(--button-color);
    transition: background 0.5s;
    text-transform: uppercase;
    position: relative;
    z-index: 0;
    letter-spacing: 1px;
}
section.blog-detail .comment-respond form.comment-form input[type=submit]:hover{
	    background: linear-gradient(90deg, #0FBDC8 37.5%, #E3EBFF 100%);
    color: #FFFFFF;
}
section.blog-detail .comment-respond form.comment-form input[type=checkbox] {
  height: 20px;
  padding: 0;
  width: 20px;
  border: 1px solid #b5b5b5;
}

section.blog-detail .comment-respond form.comment-form textarea {
  height: 150px;
  padding: 10px 12px;
  border: 1px solid #b5b5b5;
  width: 100%;
}

section.blog-detail .comment-respond form.comment-form label {
  font-size: 16px;
  margin-bottom: 8px;
}
@media (max-width: 991px) and (min-width: 768px) {
  section.blog-detail .comment-respond form.comment-form label {
    font-size: 14px;
  }
}

.get-touch2 h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  color: #181d20;
  margin-bottom: 40px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .get-touch2 h3 {
    font-size: 26px;
    line-height: 38px;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .get-touch2 h3 {
    font-size: 25px;
    padding: 6px 7px;
    height: 40px;
    margin-bottom: 22px;
    border-radius: 4px;
    text-align: center;
  }
}
.get-touch2 input:not([type=submit]) {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  text-transform: capitalize;
  padding: 10px 15px;
  color: #5f5f5f;
  width: 100%;
  height: 46px;
  border: 1px solid #b3b3b3;
  outline: none;
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .get-touch2 input:not([type=submit]) {
    font-size: 12px;
    padding: 5px 7px;
    height: 35px;
    border-radius: 4px;
  }
}
@media (max-width: 767px) {
  .get-touch2 input:not([type=submit]) {
    font-size: 13px;
    padding: 6px 7px;
    height: 35px;
    border-radius: 4px;
  }
}
.get-touch2 input[type=submit] {
  background-color: #0fbdc8;
  border-radius: 4px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: capitalize;
  padding: 10px 26px;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
  border: none;
  margin-top: 20px;
}
.get-touch2 textarea {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  text-transform: capitalize;
  padding: 10px 15px;
  color: #5f5f5f;
  width: 100%;
  height: 150px;
  border: 1px solid #b3b3b3;
  outline: none;
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .get-touch2 textarea {
    font-size: 12px;
    padding: 5px 7px;
    height: 100px;
    border-radius: 4px;
  }
}
@media (max-width: 767px) {
  .get-touch2 textarea {
    font-size: 13px;
    padding: 6px 7px;
    height: 130px;
    border-radius: 4px;
  }
}
.get-touch2 label {
  font-size: 16px;
  margin-bottom: 8px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .get-touch2 label {
    font-size: 14px;
    margin-bottom: 4px;
  }
}
@media (max-width: 767px) {
  .get-touch2 label {
    font-size: 14px;
    margin-bottom: 2px;
    text-align: left;
    width: 100%;
  }
}

.get-touch2 input[type=submit] ~ span {
  position: absolute;
}

section.product-main nav.woocommerce-pagination {
  margin-top: 20px;
}

section.product-main nav.woocommerce-pagination ul li span.current {
  background: #0fbdc8;
  color: #fff;
}

section.product-main nav.woocommerce-pagination ul li a {
  color: #0fbdc8;
}

section.product-main nav.woocommerce-pagination ul li {
  border: none;
}

section.product-main nav.woocommerce-pagination ul {
  border: none;
}

section.clients .client-slide .owl-nav {
  display: none;
}

section.protection .p-box {
  text-align: center;
  padding: 50px 20px;
  transition: all 0.3s ease-in-out;
}
section.protection .p-box:hover {
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.3);
}
section.protection .p-box img {
  width: 100%;
}
section.protection .p-box a {
  padding: 0;
}
section.protection .p-box a.pm-btn {
  padding: 15px 60px;
  display: inline-block;
}/*# sourceMappingURL=style.css.map */

/* 13-03-2023 */
.custom-modal .modal {
  position: fixed;
  top: 50% !important;
  top: unset;
  left: unset;
  right: 25px;
  width: 350px;
  height: auto; 
	transform: translateY(-50%);
}
.modal.fade .modal-dialog-end {
 transition:transform .3s ease-out;
 transform:translate(50px,0)
}
.modal.show .modal-dialog-end {
 transform:none
}

.pm-btn.modal-trigger {
  writing-mode: vertical-lr;
/*   transform: rotate(180deg); */
  position: fixed;
  right: 0;
  bottom: 40%;
  background-color: #0fbdc8;
  font-weight: 560;
  font-size: 18px;
  line-height: 33px;
  text-transform: capitalize;
  color: #fff;
  padding: 12px 7px;
  z-index: 100;
  box-shadow: -2px -2px 10px rgba(9, 90, 95, 0.11);
  border: none;
  transition: all 0.5s ease-in-out;
  border-radius: 20px 0 0 20px;
}
.pm-btn.modal-trigger.hide {
  right: -50px;
}
@supports (writing-mode: sideways-lr) {
.pm-btn.modal-trigger {
    writing-mode: sideways-lr;
    transform: unset;
  }
}
.custom-modal .modal-header .btn-close {
  position: absolute;
  right: 0px;
  top: 0px;
  background-color: #ea4a4a;
  opacity: 1;
  border-radius: 50%; 
  background-image: none;
}
.custom-modal .modal-header .btn-close::before {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00d";
  top: 48%;
  transform: translate(-50%, -50%);
  left: 50%;
  color: #fff;
  opacity: 1;
}
.custom-modal .form-control {
  border: none;
  border-bottom: 2px solid #ddd;
  border-radius: 0;
  padding: 10px 6px;
}
.custom-modal textarea.form-control {
  height: 100px;
  resize: none;
}
.form-control:focus {
  border-color: #0fbdc8;
  box-shadow: none;
}
.custom-modal .enquiry-button {
  width: 100%;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0fbdc8;
  border: none;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 10px;
  position: relative;
}
.custom-modal .modal-content {
  border: none;
  border-bottom: 3px solid #0fbdc8;
}
.custom-modal .modal-header {
	border-bottom: none;
	padding: 0;
	flex-direction: column;
	flex-direction: column;
    margin-top: 15px;
}
.home.modal-open {
  overflow-y: scroll !important;
}
.custom-modal .modal-header h5 {
  text-transform: uppercase;
  font-weight: 700;
  color: #015562;
  font-size: 18px;
  margin-bottom: 0;
}
.custom-modal .modal-header p {
  font-size: 15px;
  color: #606060;
  margin-bottom: 0;
}
/* .modal-backdrop {
	display: none;
} */


/* header search */
.searchwrapbx span {
  display: inline-flex;
  color: #fff;
  font-size: 20px;
  position: absolute;
  z-index: 0;
}
.searchwrapbx .is-search-submit {
  display: none;
}
.searchwrapbx {
  display: flex;
  align-items: center;
  position: relative;
}
.searchwrapbx .searchfrmbox {
  width: 100%;
  background-color: transparent;
  border-bottom: 1px solid #fff;
  position: relative;
  z-index: 9;
  transition: all 0.5s ease-in-out;
}
/* .searchwrapbx .searchfrmbox:hover {
  width: 100%;
  opacity: 1;
  transition: all 0.5s ease-in-out;
} */
.searchfrmbox form{
  background: #FFF;
  border-radius: 20px;
}
/* .searchfrmbox.panel_active form{
  border-radius: 20px 0 0 0;
} */
.fetchresult{
  position: absolute;
  top: 42px;
  width: 100%;
  z-index: 999999;
  background: #edf5f8;
  border-radius: 10px;
}
.fetchresult ul{
  padding: 15px;
}
.fetchresult ul li{margin-bottom: 10px;}
header .top-bar .searchfrmbox ul{
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  background: #FFF;
  gap: 10px;
  border-radius: 20px;
}
.searchfrmbox ul li.post-item a {
  display: flex;
  gap: 15px;
  text-decoration: none;
}
.searchfrmbox ul li.post-item a:hover{
  color: #0fbdc8;
}
.searchfrmbox ul li.post-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 1px solid #07273e;
}
.searchfrmbox ul li.post-item h5 {
  font-size: 15px;
  color: #07273e;
  line-height: 22px;
}

.searchfrmbox input.input_search{
  padding: 5px 15px;
  border-radius: 20px;
  width: 100%;
  border: none;
  color: #0fbdc8;
  padding-left: 50px;

}
.searchfrmbox .search_button i{
  font-size: 20px;
  color: #000000;
  position: absolute; 
  top: 8px;
  left: 15px;
 
}
.searchwrapbx .searchfrmbox .is-form-style input.is-search-input {
  background-color: transparent !important;
  border: none !important;
  color: #fff;
  padding-left: 26px;
  font-size: 15px !important;
}
.searchwrapbx .searchfrmbox .is-form-style input.is-search-input::placeholder {
  color: #fff !important;
}

.bcdform .form-group{ margin: 0 0  15px 0; padding: 0 5px;}
.bcdform .form-group .form-control{ height: 50px; color: #595c5f; border-radius: 30px; padding: 12px 15px;}
.bcdform .form-group .wpcf7-textarea { height: 100px; resize: none;}
.bcdform .btn-link_side{ background-color: #0fbdc8;
  border-radius: 4px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: capitalize;
  padding: 10px 26px;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;border: 1px solid #0fbdc8; margin-top: 25px;}

  .bcdform .btn-link_side:hover{ border: 1px solid #0fbdc8; color:#0fbdc8 ; background: none;}

  .catactive {
    background-color: #F1F1F1;
    font-weight: 700 !important;
  }
  .catactive_sub {
    background-color: #bee5f4  !important;
    font-weight: 700 !important;
  }

  .product-sidebar {
    position: sticky !important;
    top: 100px;
  }
/* sheikh starts here */
  .breadcrumb-procat {
    padding: 20px 20px;
    background: #f2f2f2;
    margin: 30px 0;
  }




.butt.h_theme_button,
.buttless.h_theme_button{
	border-radius: 20px;
    font-size: 13px;
}
/*----Location Page Start-----22-06-2023-----*/
.location-page-banner {
  position: relative;
}

.location-page-banner .wpcf7-form {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
}

.location-page-banner .ban-txt-loc {
  position: absolute;
  top: 0;
  width: 100%;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
}

.location-page-banner .ban-txt-loc input[type="email"]::placeholder,
.location-page-banner .ban-txt-loc input[type="text"]::placeholder,
.location-page-banner .ban-txt-loc select,
.location-page-banner .ban-txt-loc input[type="tel"]::placeholder,
.location-page-banner .ban-txt-loc textarea::placeholder {
  color: #dddddd !important;
  font-weight: 400;

}

.location-page-banner input[type="email"],
.location-page-banner input[type="text"],
.location-page-banner select,
.location-page-banner input[type="tel"],
.location-page-banner textarea {
  margin-bottom: 16px;
  /* background: rgba(0, 0, 0, 0.5); */
  outline: none;
  color: #fff;
}

.location-page-banner input[type="submit"] {
  margin-top: 0;
}

.location_inner_content .country-overlay {
  position: relative;
  margin-bottom: 30px;
}

.location_inner_content .country-overlay h2 {
  position: absolute;
  top: 0;
  color: #fff !important;
  background: rgba(0, 0, 0, .5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 10px solid rgba(255, 255, 255, .3);
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  font-size: 22px;
}

.location_inner_content .country-overlay img {
  max-width: 100%;
}

.location-page-banner img {
  width: 100%;
}

/*----Owl Carousel Product-------*/
.owl-carousel .item h4 a {
  color: #000;
  font-size: 14px !important;
}

.view-all-link {
  padding: 10px 20px;
  border: 1px solid #000;
  color: #000;
  margin-top: 40px;
  text-transform: uppercase;
  display: inline-block;
  z-index: 999;
  position: relative;
  background: #fff;
  border-radius: 0;
  font-weight: 500;
  transition: all ease .3s;
}

.view-all-link:hover {
  color: #fff;
  background: #2e2e2e;
}

.owl-carousel .p_title {
  margin-top: 10px;
  text-align: center;
  z-index: 10;
  position: relative;
}




/* location page product css added on 22-06-2023 */
.cus-btn2 img {
  width: 15px !important;
}
.cus-btn2 {
  display: inline-flex;
  background-color: #050522;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  padding: 11px 0px;
  gap: 9px;
  width: 100%;
  margin-top: 10px;
  transition: all 0.5s ease-in-out;
}
.cus-btn2:hover {
  color: #fff;
  background-color: #010155;
  transition: all 0.5s ease-in-out;
}
.cus-btn {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #484848;
  margin: 16px auto 0px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: center;
  justify-content: center;
  border: 1px solid #333;
  padding: 7px 0;
}
.cus-btn:hover  {
  color: #484848;
}
.loc-man-box .title h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #404040;
  margin: 25px 0 4px;
}
.loc-man-box {
  flex: 0 0 auto;
  width: 24%;
  box-shadow: 1px 1px 15px rgba(125, 125, 125, 0.21);
  text-align: center;
  padding: 20px 12px;
}
.loc-man-box-wrap {
  gap: 14px;
  margin-bottom: 32px;
}

.ns-loc{
	display: flex;
}
.loc-man-box:hover img {
  transform: rotateY(3.14rad);
  transition: all 0.5s ease-in-out;
}
.loc-man-box img  {
  transform: rotateY(0);
  transition: all 0.5s ease-in-out;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

@media (max-width: 1200px) and (min-width: 1024px) {
  .loc-man-box {width: 32%;}
}
@media (max-width: 1024px) and (min-width: 992px) {
  .loc-man-box {width: 32%;}
}
@media (max-width: 991.98px) {
  .loc-man-box {width: 32%;}
}
@media (max-width: 767.98px) {
  .loc-man-box {width: 48%;padding: 8px 5px;}
  .loc-man-box-wrap {gap: 10px;}
  .loc-man-box .title h4 {font-size: 14px;line-height: 17px;margin: 16px 0 4px;}
  .cus-btn {font-size: 9px;line-height: 13px;padding: 5px 0;margin: 5px auto 0px;}
  .cus-btn2 {font-size: 8px;padding: 8px 0px;gap: 3px;margin-top: 6px;}
  .cus-btn2 img {width: 9px !important;}
  .loc-man-box img {height: 200px;}
}


.wholesale-collection-ns figure.effect-romeo figcaption::after,
.wholesale-collection-ns figure.effect-romeo figcaption::before {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 80%;
  height: 2px;
  background: #fff;
  content: '';
  -webkit-transition: opacity .35s, -webkit-transform .35s;
  transition: opacity .35s, -webkit-transform .35s;
  transition: opacity .35s, transform .35s;
  transition: opacity .35s, transform .35s, -webkit-transform .35s;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.wholesale-collection-ns figure.effect-romeo:hover figcaption::before {
  z-index: 1;
  opacity: .5;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}


.wholesale-collection-ns figure.effect-romeo:hover figcaption::after {
  opacity: .5;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}

.img-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 56px 144px;
  height: 100%;
  background: #21040494;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.img-overlay p {
  line-height: 26px;
  font-size: 18px;
  color: #fff;
  font-style: italic;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}

.quick-order-image:before {
  content: "";
  background: url(../images/img-overlay.png);
  position: absolute;
  top: 26px;
  bottom: 0;
  left: 28px;
  right: 0;
  margin: auto;
  z-index: 99;
  background-repeat: no-repeat;
  transform: scale(1);
}


/* 26-09-2023 */
.banner-carousel .item {
  position: relative;
  z-index: 3;
}
.banner-content {
    position: absolute;
    left: 109px;
    top: 50%;
    width: 610px;
    margin: 0 auto;
  padding-right: var(--bs-gutter-x,.75rem);
  padding-left: var(--bs-gutter-x,.75rem);
  transform: translateY(-50%);
  background-color: #d6eef0e3;
  padding: 50px;
}
 .banner-content .desc h4{
  font-size: 20px;
}
 .banner-content .desc h1{
     font-size: 43px;
    font-weight: 500;
    line-height: 49px;
    margin-bottom: 40px;

}
 .banner-content .desc h2{
     font-size: 38px;
    font-weight: 500;
    line-height: 49px;
    margin-bottom: 40px;

}


.banner-carousel .swiper-button-next, .banner-carousel .swiper-button-prev {
  background-color: #0fbdc8 !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  color: #fff !important;font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-carousel .swiper-button-next::after, .banner-carousel .swiper-button-prev:after{display: none;}
/* 26-09-2023 */

/*27-9-23----kaushik---*/
.product-main .product-categories li.cat-item.cat-item-image{
    position: relative;
    
}
.product-main .product-categories li.cat-item.cat-item-image::after{
  position: absolute;
  content: '';
  background-color: #0fbdc8;
  width: 20px;
  height: 3px;
  top: 26px;
  left: 0px;
  right: 0;
  border-radius: 50px;
  overflow: hidden;
}
.product-main .product-categories li.cat-item.cat-item-image::before{
position: absolute;
  content: '';
  background-color: #0fbdc8;
  width: 6px;
  height: 3px;
  top: 26px;
  left: 25px;
  border-radius: 84px;
  overflow: hidden;
    
}
.product-main .product-categories li:hover.cat-item-image::after{
    width: 40px;
    transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
      height: 3px;
}


.chair-part{
    padding-top: 30px;
    padding-bottom: 30px;
    
}
.chair-part .box{
    position: relative;
    background-color: #f8eded;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
}
.chair-part .box .img-box{
    max-width: 64%;
    display: flex;
    margin: 0 auto;
    
}
.chair-part .box .text-part{
   position: absolute;
    z-index: 99;
    top: 60px;
    left: 28px;
}
.chair-part .box .text-part a{
    text-decoration: none;
    text-transform: capitalize;
    background-color: #0a828a;
    padding: 15px 20px;
    border-radius: 50px;
    margin-top: 10px;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    
}
.chair-part .box .text-part h4{
    color: #201f1f;
    font-size: 28px;
    font-weight: 600;
    width: 75%;
    text-transform: capitalize;
}
.chair-part .box .text-part p{
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
    
}

.digital-part{
    padding-top: 30px;
    padding-bottom: 30px;
    
}
.digital-part .main-box{
  
    background-color: #eaeaea;
    overflow: hidden;
    padding: 20px;
    height: 200px;
}
.digital-part .main-box .text{
    padding-right: 33px;
}
.digital-part .main-box .text h5{
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    color: #8f8d8d;
}
.digital-part .main-box .text h3{
    font-weight: 600;
    font-size: 33px;
    text-transform: capitalize;
    padding-top: 10px;
    color: #2a2a2a;
}
.digital-part .main-box .text a{
        text-transform: capitalize;
    text-decoration: none;
    font-size: 15px;
    color: #cd5050;
    position: relative;
}
.digital-part .main-box .text a::after{
        position: absolute;
    content: '';
    background-color: #cd5050;
    width: 90px;
    height: 2px;
    left: 0;
    right: 0;
    bottom: -6px;
    
    
    
}
.digital-part .main-box .text a i{
    padding-left: 5px;
     color: #cd5050;
}

.digital-part .main-box .img-box{
  position: relative;
    right: 22px;
    max-width: 122px;
    z-index: 999;
}
.digital-part .main-box .img-box::before{
   position: absolute;
    content: '';
    background-color: #9bc8edbd;
    width: 201px;
    height: 183px;
    top: -65px;
    bottom: 0;
    right: -80px;
    border-radius: 116px;
    z-index: -1;

}
.digital-part .main-box .all-part{
    position: relative;
    display: flex;
    align-items: initial;
    margin: 0 auto;
    justify-content: space-between;
}

.digital-part .sd-part{
    display: flex;
    margin-top: 20px;
}
.digital-part .sd-part .main-box:first-child{
    margin-right: 20px;
}




/*27-9-23-----*/



/*start----28-9-23*/

.part-chair{
    margin-top: 30px;
    margin-bottom: 10px;
}
.part-chair .all-part{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
    gap:15px;

}
.part-chair .box{
    position: relative;
    background-color: #f8eded;
    flex: 1 0 auto;
    width: 44%;
}
.part-chair .box .img-box{
    width: 68%;
    display: flex;
    margin: 0 auto;
    
}
.part-chair .box .text-part{
   position: absolute;
    z-index: 9;
    top: 60px;
    left: 28px;
}
.part-chair .box:nth-child(2) {
  background-color: #d4f5f7;
}
.part-chair .box:nth-child(3) {
  background-color: #e0f2e2;
}
.part-chair .box .text-part a{
  background-color: #0fbdc8;
  border-radius: 4px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  text-transform: capitalize;
  padding: 14px 26px;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
  display: inline-flex;
  justify-content: center;
  align-items: center;
    
}

.part-chair .box .text-part h4{
    color: #201f1f;
    font-size: 28px;
    font-weight: 600;
    width: 75%;
    text-transform: capitalize;
}
.part-chair .box .text-part p{
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
    
    
    
}
.snd-part{
    margin-top: 40px;
}
.snd-part .abp-part{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;

}
.snd-part .main-box{
  background-color: #eaeaea;
  overflow: hidden;
  padding: 20px;
  height: 200px;
  flex: 1 3 auto;
}
.snd-part .main-box .text{
    padding-right: 33px;
}
.snd-part .main-box .text h5{
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    color: #8f8d8d;
}
.snd-part .main-box .text h3{
    font-weight: 600;
    font-size: 33px;
    text-transform: capitalize;
    padding-top: 10px;
    color: #2a2a2a;
}
.snd-part .main-box .text a{
        text-transform: capitalize;
    text-decoration: none;
    font-size: 15px;
    color: #cd5050;
    position: relative;
}
.snd-part .main-box .text a::after{
        position: absolute;
    content: '';
    background-color: #cd5050;
    width: 90px;
    height: 2px;
    left: 0;
    right: 0;
    bottom: -6px;
    
    
    
}
.snd-part .main-box .text a i{
    padding-left: 5px;
     color: #cd5050;
}

.snd-part .main-box .img-box{
  position: relative;
    right: 22px;
    max-width: 122px;
    z-index: 9;
}
.snd-part .main-box .img-box::before{
   position: absolute;
    content: '';
    background-color: #9bc8edbd;
    width: 201px;
    height: 183px;
    top: -65px;
    bottom: 0;
    right: -80px;
    border-radius: 116px;
    z-index: -1;

}
.snd-part .main-box .all-part{
   position: relative;
  display: flex;
  align-items: initial;
  margin: 0 auto;
  justify-content: space-between;
}


/*end------28-9-23*/

#banner-carousel .owl-dots {
  display: none;
}
.c-heading h3{
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-size: 40px !important;
  line-height: 46px;
  text-transform: capitalize;
  color:#0fbdc8;
  margin-bottom: 40px !important;
    
}

#quadmenu .quadmenu-container{
   padding: 15px 0 !important;
}


/* 28-12-2023 */
/**   CUSTOM MENU SINGLE DROPDOWN */

@media (min-width: 991px) {
  .custom__nav .dropdown-toggle+.caret {
    display: none !important;
  }

  .bottom-bar {
    padding: 0;
  }

  .sub-menu-toggle {
    display: none !important;
  }

  .custom__nav {
    padding: 0;
  }

  .custom__nav .nav-item.dropdown {
    position: unset !important;
  }

  .custom__nav .nav-item.dropdown .dropdown-menu {
    display: flex !important;
    width: calc(100vw - 10%);
    text-align: center;
    left: 50%;
    flex-wrap: wrap;
    height: auto;
    overflow-y: unset;
  }

  .custom__nav .menu-item-has-children.dropdown .dropdown-menu {
    background-color: var(--clr-blue-100);
    border-radius: 0;
    border-bottom: 2px solid var(--clr-primary);
    top: 100%;
    visibility: hidden;
    display: block;
    transform-origin: 50% 0;
    -webkit-transform: perspective(3000px) rotateX(-90deg) translate(-50%);
    -moz-transform: perspective(3000px) rotateX(-90deg) translate(-50%);
    -ms-transform: perspective(3000px) rotateX(-90deg) translate(-50%);
    -o-transform: perspective(3000px) rotateX(-90deg) translate(-50%);
    transition: all 0.3s ease-in-out;
    border: none !important;
    padding: 0;
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.14);
    background-color: #f7f7f7;
  }

  .custom__nav .menu-item-has-children.dropdown:hover .dropdown-menu {
    visibility: visible;
    display: unset;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
  }

  .custom__nav ul:not(.dropdown-menu) .nav-item {
    padding: 0 8px;
    display: flex;
    align-items: center;
    color: #000 !important;
    position: relative;

  }

  .custom__nav ul:not(.dropdown-menu) .nav-item.active>.nav-link,
  .custom__nav ul:not(.dropdown-menu) .nav-item>.nav-link:hover {
    color: #0fbdc8 !important;
    transition: all 0.5s ease-in-out;
  }

  .custom__nav ul:not(.dropdown-menu) .nav-item>.nav-link {
    font-size: 13px !important;
    text-transform: uppercase;
    font-weight: 600;
    color: #000 !important;
    line-height: 50px !important;
    padding: 0 !important;
    transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
    position: relative;
  }

  .custom__nav ul:not(.dropdown-menu) .nav-item>.nav-link::before {
    position: absolute;
    content: '';
    width: 0%;
    height: 1px;
    background-color: #0fbdc8;
    right: 0;
    bottom: 14px;
    transition: all 0.5s ease-in-out;
    left: unset;
  }

  .custom__nav ul:not(.dropdown-menu) .nav-item>.nav-link:hover::before,
  .custom__nav ul:not(.dropdown-menu) .nav-item.active>.nav-link::before {
    width: 100%;
    transition: all 0.5s ease-in-out;
    left: 0;
    right: unset;
  }

  .custom__nav .dropdown-toggle::after {
    display: inline-block !important;
  }

  .custom__nav .dropdown .dropdown-menu .nav-item {
    padding: 0px;
    width: 25%;
    flex: 0 0 auto;
    border-right: 1px solid #f2f2f2;
    text-align: center;
    justify-content: center;
  }

  header.sticky_menu .bottom-bar .custom__nav ul:not(.dropdown-menu) .nav-item>.nav-link {
    line-height: 60px !important;


  }
}

.custom__nav .dropdown-toggle .caret {
  display: none !important;
}

.custom__nav .dropdown .dropdown-menu .nav-item .nav-link {
  color: #333 !important;
  font-size: 14px !important;
  padding: 6px 0 !important;
  transition: all 0.3s ease-in-out;
  line-height: 32px !important;
}

.custom__nav .dropdown .dropdown-menu .nav-item:hover .nav-link {
  color: #fff !important;
  transition: all 0.3s ease-in-out;
}

.custom__nav .dropdown .dropdown-menu .nav-item .nav-link::before {
  display: none !important;
}

.custom__nav .dropdown-menu .nav-item:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.custom__nav .dropdown-menu .nav-item:hover {
  background-color: var(--clr-primary);
  --clr-primary: #0fbdc8;
}

.custom__nav .navbar-toggler {
  padding: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.custom__nav .navbar-toggler .icon-bar {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 1px;
  background-color:#0fbdc8;
  margin: 5px 0;
}

.custom__nav .nav-item.dropdown .dropdown-toggle::after {
  display: none;
}

.custom__nav .nav-item.dropdown .sub-menu-toggle {
  position: absolute;
  right: 0;
  top: 19px;
  transform: translateY(-50%);
  display: inline-flex;
  background-color: #0fbdc8;
  border: none;
  width: 28px;
  height: 25px;
  font-size: 16px !important;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.custom__nav .sub-menu-toggle.active .icon-plus,
.sub-menu-toggle .icon-minus {
  display: none;
}

.custom__nav .sub-menu-toggle.active .icon-minus,
.sub-menu-toggle .icon-plus {
  display: block;
}

.custom__nav .nav-item.dropdown {
  position: relative;
  z-index: 1;
}

.custom__nav ul:not(.dropdown-menu) .nav-item>.nav-link {
  font-size: 15px !important;
  text-transform: capitalize;
  font-weight: 500;
  color: #4a4a4a;
  line-height: 1.5;
  padding: 8px 0 !important;
  transition: all 0.5s ease-in-out;
}

.custom__nav ul:not(.dropdown-menu) .nav-item.active>.nav-link {
  color: #0fbdc8;
}

.custom__nav ul:not(.dropdown-menu) .dropdown-menu {
  border: none;
  border-radius: 0;
  border-left: 1px solid #0fbdc8;
  background-color: #f7f7f7;
  height: 260px;
  overflow-y: scroll;
}

.custom__nav .dropdown-menu .nav-item {
  padding-left: 15px;
}

.custom__nav .offcanvas-header {
  justify-content: flex-end;
  padding-bottom: 0;
}

header.sticky_menu .bottom-bar {
  padding: 0px 0 !important;
}

header {
  background-color: #fff;
  position:relative;
  z-index:99;
}

.navbar-brand img {
  height: 50px !important;
  object-fit: contain;
  padding: 7px 0;
}

.custom__nav .dropdown-toggle+.caret {
  display: inline-flex;
  width: 30px;
  height: 30px;
  background-color: #0fbdc8;
  color: #fff;
  position: absolute;
  font-size: 14px;
  right: 0;
  top: 4px;
  cursor: pointer;
}

.custom__nav .dropdown-toggle+.caret::before {
  position: absolute;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\2b";
}

.custom__nav .dropdown-toggle+.caret.active::before {
  content: '\f068';
}



/**   CUSTOM MENU SINGLE DROPDOWN */

.foot-form .form-group input, .foot-form .form-group textarea, .foot-form .form-group select{
  border-radius: 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #828282;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--clr-white);
  width: 100%;
  outline: none;
}
.foot-form .form-group select {
  outline: none;
  -webkit-appearance: none;
  color: var(--clr-white);
}
.foot-form .form-group option {
  color: var(--clr-black-200);
}
.foot-form .form-group textarea{
  resize: none;
 outline: none;
 
}
.foot-form .form-group input::placeholder, .foot-form .form-group textarea::placeholder, .foot-form .form-group select::placeholder{
  color: var(--clr-white);
}

.catalouge-list.new .c-card a{position:relative; padding: 0; text-decoration: none;}
.catalouge-list.new .c-card a span{display: block;text-decoration: none; border-bottom: inherit;}
.catalouge-list.new{text-align: center;}
/* .catalouge-list.new h2{font-size: 40px; font-weight: 700; color: #000;} */
.get-touch2 h3{text-align: center; font-size: 30px; font-weight: 700; color: #0fbdc8;}
.catalouge-form {padding-bottom: 40px;}

.catalouge-list.new .modal-dialog{
	width:100% !important;
	height:100% !important;
  z-index: 9999;
		
}
.catalouge-list.new .modal-dialog .btn-close{
	position:absolute;
	top:20px;
	right:20px;
	z-index:99; background-image: url(https://www.8health.com/wp-content/uploads/2024/03/cross.png);
	background-size: 100%;
  opacity: 1;
}
.catalouge-list.new .modal-dialog .df-viewer-container{background: #fff !important;}
.catalouge-list.new .modal-dialog .modal-header{padding:26px !important}

.category-manufacturers-sec{position: relative; padding: 40px 0;}
.archive-description-Box {position: relative; display: flex; flex-wrap: wrap; gap: 20px;}
.archive-description-Box article{width: 48%;}
.category-manufacturers-sec .page-title{text-align: center;font-size: 32px;
  line-height: 38px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 20px;}
  .archive-description-Box header{background: none !important; background-color: inherit !important;}
  .archive-description-Box header h2{
    text-align: left;font-size: 22px;
  line-height: 28px;
  text-transform: capitalize;
  color: #000000;
  }
  .archive-description-Box header h2 a{
    color: #000000 !important; text-decoration: none !important;
  }
  .archive-description-Box .post-thumbnail{height: 100%;}
  .archive-description-Box .post-thumbnail img{height: 100%;}
  .archive-description-Box footer{background: none !important;background-color: inherit !important;padding: 0;}
  .archive-description-Box footer::after{display: none !important;}
  .archive-description-Box .entry-footer a{padding: 8px; border: 1px solid #eee; text-decoration: none; color: #000 !important; display: inline-block;margin: 3px;  font-weight: 400;}
  .archive-description-Box .entry-footer span{display: block; font-weight: 700;}
   .archive-description-Box .entry-content p a{
         color: #000 !important;text-decoration: none ;
   }

.support-block-sec{
  position: relative; padding: 30px 0;
  background: #fbf8f3;
}
.support-block{position: relative; width: 100%; display: flex; align-items: center; justify-content: center;}
.support-block .support-icon{
  width: 70px;
}
.support-block span{padding-left: 10px;}
.support-block span h3{font-size: 20px; line-height: 24px; color: #000; font-weight: 700;margin-bottom: 5px;}
.support-block span p{
  color: #818b8c; font-weight: 400;font-size: 18px;margin-bottom: 0;
}
.office .col-lg-3{width: 20%;}
.banner-carousel .banner-image img{height: 600px; width: 100%; object-fit: cover;}

.new_ctaPart-sec{position: relative; padding: 50px 0;}
.ctaPart-left{position: relative; width: 100%; display: flex; height: 100%; overflow: hidden;}
.ctaPart-left img{width: 100%; position: relative;height:250px; object-fit:cover;}
.ctaPart-Right{position: relative; width: 100%; overflow: hidden;}  
.ctaPart-Right img{width: 100%; position: relative;height: 500px;
  object-fit: cover;}
.ctaPart-Right::before{
  background: #020202;
  width: 0%;
  height: 100%;
  top: 100%;
  z-index: 1;
  position: absolute;
  content: "";
  opacity: 0;
  transition: all 0.3s linear;
}
.ctaPart-left::before{
  background: #020202;
  width: 0%;
  height: 100%;
  top: 100%;
  z-index: 1;
  position: absolute;
  content: "";
  opacity: 0;
  transition: all 0.3s linear;
}
.ctaPart-left:hover:before{
  opacity: 0.7;
  top: 0%;
  width: 100%;
}
.ctaPart-Right:hover:before{
  opacity: 0.7;
  top: 0%;
  width: 100%;
}
.ctaPart-Right{position: relative;width: 100%;}
.ctaPart-left .text-part{position: absolute; width: 100%; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center;opacity: 0; padding: 20px;}
.ctaPart-left:hover .text-part{opacity: 1; z-index: 9;}
.ctaPart-Right .text-part{
  position: absolute; width: 100%;bottom: 50px; left: 50%; transform: translateX(-50%); text-align: left;opacity: 0;padding: 20px;
}
.ctaPart-Right:hover .text-part{opacity: 1; z-index: 9;}
.new_ctaPart-sec .text-part h4{color: #fff; margin-bottom: 10px;}
.new_ctaPart-sec .text-part p{color: #fff;}


.innovative-sec{position: relative; width: 100%; padding: 50px 0;}

.innovative-left{position: relative; width: 100%; bottom: 10px;}   
.innovative-box{display: flex; flex-wrap: wrap; width: 100%; margin-bottom: 30px;}
.innovative-box span{
  width: 80px; height: 80px;
}
.innovative-box .text{padding-left: 10px; text-align: left;width: 75%;}
.innovative-box .text h4{
  color: #201f1f;
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;margin-bottom: 10px;
}
.innovative-box .text p{
  font-size: 18px; line-height: 30px; color: #000;
}
.innovative-mid{position: relative; width: 100%;margin: 0 auto;
  text-align: center;}
.innovative-mid img{margin: 0 auto;}
.innovative-left .innovative-box {flex-direction: row-reverse; }
.innovative-left .innovative-box .text{ padding: 0 12px 0 0; text-align: right;}
section.health-sec2 .sec2-text img{display: none;}
section.health-sec2 .sec2-text {
  background: none;}
 
  section.countries .c-card img.y1-img {
    height: 60px;
    width: 60px;
  }
  .is-form-style input.is-search-input {  height: 25px !important;}
.enquire img{display: none;}
section.enquire {background: url(https://www.8health.com/wp-content/uploads/2024/03/bg.webp) no-repeat 0; width: 100%; background-attachment: fixed;background-size: cover;}
section.office .w-card h3 img{display: none;}
section.office .w-card span i{margin-right: 6px;}
.product-main-sec{position: relative; padding: 50px 0 20px; }
 .swiper-button-next, .swiper-button-prev {
  background-color: #0fbdc8 !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  color: #fff !important;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-button-next::after, .swiper-button-prev::after{display: none;}
.product-main-sec .p-box h4{font-size: 18px; color: #000; line-height: 22px;display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;min-height: 50px; }
.product-main-sec .p-box img{margin-bottom: 15px;}
.innerbanner{position: relative;}
.blog-detail h1{margin: 15px 0;}
.footer_sec a:hover{color:#ddd;}
.story p a:hover{color:#ddd;}
.product-main .accordion{width:100% !important;}
.searchfrmbox .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp{background:none !important}

.searchfrmbox .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp{padding-left:0 !important;padding:0 !important;}
.searchfrmbox .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
  padding: 5px 24px 5px 40px !important;
  line-height: 26px;
  font-size: 17px;
	border: 2px solid transparent;}
.searchfrmbox .dgwt-wcas-ico-magnifier {
  bottom: 30px;
	left: -22px;}
.searchwrapbx .searchfrmbox{border-bottom:none !important;}
.category-manufacturers-sec .archive-description-Box  img{max-width:100%;}
	.archive-description-Box h3{ font-size: 20px;
	line-height: 25px; text-align:center;}
.archive-description-Box {
    justify-content: center;
}

.catalogBox{position: relative; width: 100%;}
.catalogBox img{width: 100%; position: relative;}
.catalogBox .df-book-title {
  bottom:0;
  position: absolute;
  width: 100%;
  left: 0;
  padding: 5px;
  font-size: 17px;
  background: rgb(19, 24, 30);
  color: #fff;
  box-sizing: border-box;
  display: block;
  -moz-transition: .4s;
  -o-transition: .4s;
  -webkit-transition: .4s;
  transition: .4s;
  opacity: 0;
  text-align: center;

}
.catalogBox:hover .df-book-title{opacity: 1; z-index: 5;}

  .thankyou-text{padding: 30px; position: relative;}
/* .thankyou-text h3{font-size: 56px; color: #4AB5B8 !important; font-weight: 700; margin-bottom:10px ; line-height: 65px;} */
.thankyou-text p{font-size: 22px; }
.catalog-sec {position: relative; padding: 30px 0;}
.catalog-sec h2{font-size: 40px; color: #000 !important; font-weight: 700; margin-bottom:10px ;}
.catalogBox img {
  width: 100%;
  position: relative;
/*  height: 300px;*/
}
.catalog-sec .modal-dialog{
  width:100% !important;
  height:100% !important;
    
}
.catalog-sec .modal-dialog .btn-close{
  position:absolute;
  top:20px;
  right:20px;
  z-index:99; background-image: url(https://www.oasisuniform.net/wp-content/uploads/2024/03/cross1.png);
  background-size: 100%;
  opacity: 1;
}




.fac-mb__factory-wrap .accordion-button {
  padding: 10px;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: none !important;
}
.fac-mb__factory-wrap .accordion-button::after { 
  --bs-accordion-btn-icon-width: 14px;
  filter: invert(0);
  background-size: 100%;
}
.fac-mb__factory-wrap .accordion-body {
  padding: 15px 10px;
  border-top: 1px solid #e6e6e6;
}
.fac-mb__factory-wrap .accordion-item {
  box-shadow: 1px 1px 30px rgba(0, 0, 0, .04) !important;
  margin-bottom: 12px;
  border-bottom: 0;
  border-radius: 5px !important;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .125);
}
.fac-mb__factory-title {
  font-size: 14px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  font-weight: 600;
  gap: 12px;
  color: #000;
}
.fac-mb__factory-title img {
  height: 53px;
  width: 32px;
  object-fit: cover;
  border-radius: 50%;
}
.fac-mb__factory-content ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fac-mb__factory-content ul li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fac-mb__factory-content ul li h5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  color: #000;
}
.fac-mb__factory-content ul .progress{
  --bs-progress-bar-bg:#0FBDC8 !important; 
  --bs-progress-height: 3px !important;
  height: 3px;
}
.fac-mb__factory-content ul .progress-bar{
  background-color: #0FBDC8;
  height: 3px;
}

:root{
  --theme-color-my: #0fbdc8; 
}

.footer__menu-sticky {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  left: 0;
}
.footer__menu-sticky .row [class^="col-"]:not(:last-child) {
  border-right: 1px solid #e3e3e3;
}
.footer__menu {
  background-color: #fff;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.07);
}
.footer__menu-wrap .offcanvas.offcanvas-bottom {
  max-height: calc(95vh - 180px);
  background-color: #f9f9f9;
  height: auto;
}
.footer__menu-wrap .offcanvas-body {
  padding: 0 1rem;
}
.footer__menu-wrap .offcanvas-header {
  justify-content: flex-end;
  padding: 6px 10px;
}
.footer__off-close {
  border: none;
  background-color: transparent;
}
.footer__off-close svg path {
  fill: var(--theme-color-my);
}
.footer__office-box .title {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  flex-direction: column;
  flex: 0 0 auto;
  width: 100%;
  padding-right: 0;
}
.footer__office-box .title h5 {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 16px;
}
.footer__office-box:nth-last-child(-n + 6) .title h5 {
  min-height: 40px;
}
.footer__office-box .title img {
  width: 100%;
  object-fit: contain;
  height: 60px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7470%) hue-rotate(116deg) brightness(109%) contrast(109%);
  
}
.footer__office-box .title .icon {
  background-color: var(--theme-color-my);
  display: inline-flex;
  width: 100%;
  height: 80px;
  justify-content: center;
  align-items: center;
}
.footer__office-box {
  flex: 0 0 auto;
  width: 31%;
  padding: 10px;
  border: 1px solid #f4f4f4;
  border-radius: 5px;
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.04);
  background-color: #fff;
  display: flex;
  align-items: center;
}
.footer__office-box .footer__contact-list {
  display: none;
}
.footer__office-box:has(.footer__contact-list) {
  width: 100%;
}
.footer__office-box:has(.footer__contact-list) .title {
  width: 30%;
  padding-right: 12px;
}
.footer__office-box:has(.footer__contact-list) .title .icon {
  height: 80px;
}
.footer__contact-list {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}
.footer__contact-list li {
  font-size: 12px;
  color: #424242;
  position: relative;
  padding-left: 15px;
}
.footer__contact-list li a {
  color: inherit;
}
.footer__contact-list li span {
  position: absolute;
  left: 0;
  font-size: 11px;
  top: 1px;
}
.footer__contact-list li a:hover {
  color: #ca0404;
  text-decoration: underline;
}
.footer__office-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  justify-content: space-between;
}
.footer__menu-box {
  position: relative;
}
.footer__menu-box .navbar-toggler {
  color: #000;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 7px;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  margin: 0 auto;
}
.footer__menu-box .navbar-toggler img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(74%) sepia(36%) saturate(7341%) hue-rotate(141deg) brightness(98%) contrast(88%);
}
.footer__menu-qc ul li {
  flex: 0 0 auto;
  width: 30%;
  list-style-type: none;
}
.footer__menu-qc ul li a {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.footer__menu-qc .qc-right .icon {
  display: inline-flex;
  border-radius: 50%;
  position: relative;
  right: 0;
  width: 75px;
  height: 75px;
  top: 0;
  padding: 16px;
  aspect-ratio: 1;
}
.footer__menu-qc .qc-right .icon img{
  width: 46px;
  height: 45px;
  object-fit: contain;
}
.footer__menu-qc .qc-right h5 {
  font-size: 12px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
  color: #353535;
}
.footer__menu-qc .qc-right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: relative;
  flex-direction: column;
}
.footer__menu-qc .qc-right h6 {
  font-size: 16px;
  margin-bottom: 0;
  display: none;
}
.footer__menu-qc ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 10px;
  justify-content: center;
  padding: 0;
}
.footer__menu-qc {
  margin-bottom: 25px;
}
.footer__menu-modal .form-group .form-control {
  background-color: var(--clr-white);
  border-radius: 6px;
  padding: 7px 15px;
  height: 36px;
  color: #000 !important;
  font-family: var(--ff-paragraph);
  font-size: 14px;
  transition: all 0.5s;
}
.footer__menu-modal .form-group .form-control::placeholder {
  color: #000;
  opacity: 1;
}
.footer__menu-modal .form-group .form-control:focus,
.footer__menu-modal .form-group .form-control:active,
.footer__menu-modal .form-group .form-control:focus-visible,
.footer__menu-modal .form-group .form-control :focus-within {
  border-color: #ff1414;
  box-shadow: none;
  outline: none;
}
.footer__menu-modal .wpcf7-response-output {
  border: none !important;
  color: red;
  padding: 0 !important;
  background: 0 0;
  margin: 15px 0 0 !important;
}
.footer__menu-modal .wpcf7-not-valid-tip {
  margin-top: 5px;
}
.footer__menu-modal .form-group {
  margin-bottom: 16px;
}
.footer__menu-modal textarea.form-control {
  height: 80px !important;
  resize: none;
}
.footer__menu-modal .custom-button,
.footer__menu-form .custom-button {
  display: inline-flex;
  background-color: var(--theme-color-my);
  border: 1px solid transparent;
  padding: 6px 25px;
  color: #fff;
  font-weight: 600;
  border-radius: 0;
  text-transform: capitalize;
  transition: all 0.5s;
}
.footer__menu-modal .custom-button:hover,
.footer__menu-form .custom-button:hover {
  color: var(--theme-color-my) !important;
  background-color: transparent;
  border-color: var(--theme-color-my);
}
.footer__menu-modal .modal-header h3 {
  margin-bottom: 0 !important;
  font-size: 20px;
  color: #000;
  font-weight: 600;
}

.footer__menu-modal .modal-header .btn-close {
  background-color: #ff1414 !important;
  opacity: 1;
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 50%;
  font-size: 11px;
  margin-left: auto;
}
footer__menu-modal{
padding: 0 !important;
}
iframe[title="Messaging window"] {
  height: 70% !important;
  bottom: 0 !important;
  top: unset !important;
}
.footer__factory-wrap .accordion-button {
  padding: 10px;
  background: 0 0 !important;
  box-shadow: none !important;
  border-bottom: none !important;
}
.footer__factory-wrap .accordion-button::after {
  --bs-accordion-btn-icon-width: 14px;
}
.footer__factory-wrap .accordion-body {
  padding: 15px 10px;
  border-top: 1px solid #e6e6e6;
}
.footer__factory-wrap .accordion-item {
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.04) !important;
  margin-bottom: 12px;
  border-bottom: 0;
  border-radius: 5px !important;
}
.footer__factory-title {
  font-size: 14px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  font-weight: 600;
  gap: 12px;
}
.footer__factory-title img {
  height: 30px;
  width: 30px;
  object-fit: cover;
  border-radius: 50%;
}
.footer__factory-content ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__factory-content ul li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__factory-content ul li h5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}
.footer__factory-content ul .progress {
  --bs-progress-bar-bg: #24c60d;
  --bs-progress-height: 3px;
}
#footerMenuContactModal {
  z-index: 9999999;
}
#myLauncher::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #40655e;
  border-radius: 50%;
  top: 7px;
  right: 6px;
}
.footer__menu-qc ul li:nth-child(1) .icon {
  background-color: #7ab943;
}
.footer__menu-qc ul li:nth-child(2) .icon {
  background-color: #41b9f1;
}
.footer__menu-qc ul li:nth-child(3) .icon {
  background-color: #fe9191;
}
.footer__menu-qc ul li:nth-child(4) .icon {
  background-color: #ff960f;
}
.footer__menu-qc ul li:nth-child(5) .icon {
  background-color: #a860ff;
}
.desk_top_chatbot {
  position: fixed;
  z-index: 99;
  bottom: 25px;
  left: 25px;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f73b7;
  border-radius: 100%;
  padding: 10px;
  color: #000;
  box-shadow: 0 3px 6px rgb(0 0 0/25%);
  display: none;
}
.footer__factory-wrap .accordion-button.collapsed::after{    
  width: 20px;
  display: block;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotateZ(0);  
  border: none !important;
  outline: none !important;

}
.footer__factory-wrap .accordion-button::after {
  transform: translateY(-50%) rotateZ(180deg);
  width: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  border: none !important;
}
.desk_top_chatbot span { 
  display: block;
  margin-top: 3px;
}
#chaty-widget-0.chaty-widget-0{
  display: none !important;
}
@media only screen and (min-width: 768px){
  .desk_top_chatbot{
    display: flex;
  } 
  #chaty-widget-0.chaty-widget-0{
    display: block !important;  
  }
}
@media only screen and (max-width: 479px){
  .footer__menu-qc .qc-right .icon{
    width: 65px;
    height: 65px; 
  }
  .footer__menu-qc .qc-right .icon img{
    width: 35px;
    height: 35px;
  }
} 
/*--22-05-2024----*/
.inner-page__modal {
  z-index: 9999!important
}
.addpopup .wpcf7-form-control {
  border: 1px solid #ccc !important;
  color: #000!important;
  border-radius: 0;
  padding: 12px;
  height: unset;
  box-shadow: unset
}

.addpopup .wpcf7-form-control::placeholder {
  opacity: 1;
  color: #939393
}

.addpopup .map-part iframe {
  width: 100%
}

.addpopup .wpcf7-form-control.wpcf7-textarea {
  height: 120px;
  resize: none;
font-weight: 400;
  
}
.inner-page__modal .row.align-items-center {
  display: flex;
  align-items: center
}

.inner-modal__title h4 {
  font-size: 28px;
  text-transform: capitalize;
  color: #5c5c5c;
  margin-bottom: 25px
}

.addpopup .wpcf7-submit.form-btn {
  background-color: #09245C;
    display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff!important;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 32px;
  border: none;
margin: 0;
}

.popup-cataolg .form-btn {
  background-color: #0fbdc8;
  align-items: center;
  justify-content: center;
  color: #fff!important;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  text-transform: uppercase
}

.popup-cataolg {
  text-align: center;
  margin-top: 15px
}
  .theme_modal .wpcf7-not-valid-tip{
    margin-bottom: 10px;
  }
.western {
  text-align: justify;
  color: #333
}
  .theme_modal .modal-content{
    padding: 15px;	
  }
  .theme_modal .btn-close{
    margin-left: auto;
  }
  .theme_modal .modal-bg{
    max-height: 450px;
      height: 450px;
  }
  .theme_modal .modal-bg img{
    object-fit: cover;
    object-position: top center;
    width: 100%;
    height: 100%;
  }
  .theme_modal .modal-content .popup-cataolg a{
    color: #FFF;
  }
  .theme_modal .wpcf7-response-output{
        padding: 0 !important;
      border: none !important;
      color: red !important;
      margin: 0 !important;
  }
  .theme_modal .popup-cataolg{
        margin: 15px auto 0 auto;
        text-align: center;
  }
  .theme_modal .popup-cataolg a{
    box-shadow: none;
    display: inline-block;
    color: #FFF;
    width: auto;
    font-weight: 400;
  }
  .home .modal-backdrop,
  .home .theme_modal{
    display: none !important;
  }
  .inner-page__modal.theme_modal .modal-body{
    padding: 0 !important;
  }
.addpopup .wpcf7-form-control{
  margin-bottom: 15px;
}
.theme_modal .modal-content .popup-cataolg a{
      text-decoration: none;
}


.inner-page__modal {
  z-index: 9999!important
}
.addpopup .wpcf7-form-control {
  border: 1px solid #ccc !important;
  color: #000!important;
  border-radius: 0;
  padding: 12px;
  height: unset;
  box-shadow: unset
}

.addpopup .wpcf7-form-control::placeholder {
  opacity: 1;
  color: #939393
}

.addpopup .map-part iframe {
  width: 100%
}

.addpopup .wpcf7-form-control.wpcf7-textarea {
  height: 120px;
  resize: none;
font-weight: 400;
  
}
.inner-page__modal .row.align-items-center {
  display: flex;
  align-items: center
}

.inner-modal__title h4 {
  font-size: 28px;
  text-transform: capitalize;
  color: #5c5c5c;
  margin-bottom: 25px;
}

.addpopup .wpcf7-submit.form-btn {
  background-color: #09245C;
    display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff!important;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 32px;
  border: none;
margin: 0;
}

.popup-cataolg .form-btn {
  background-color: #EEC800;
  align-items: center;
  justify-content: center;
  color: #fff!important;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  text-transform: uppercase
}

.popup-cataolg {
  text-align: center;
  margin-top: 15px
}
  .theme_modal .wpcf7-not-valid-tip{
    margin-bottom: 10px;
  }
.western {
  text-align: justify;
  color: #333
}
  .theme_modal .modal-content{
    padding: 15px;	
  }
  .theme_modal .btn-close{
    margin-left: auto;
  }
  .theme_modal .modal-bg{
    max-height: 450px;
      height: 450px;
  }
  .theme_modal .modal-bg img{
    object-fit: cover;
    object-position: top center;
    width: 100%;
    height: 100%;
  }
  .theme_modal .modal-content .popup-cataolg a{
    color: #FFF;
  }
  .theme_modal .wpcf7-response-output{
        padding: 0 !important;
      border: none !important;
      color: red !important;
      margin: 0 !important;
  }
  .theme_modal .popup-cataolg{
        margin: 15px auto 0 auto;
        text-align: center;
  }
  .theme_modal .popup-cataolg a{
    box-shadow: none;
    display: inline-block;
    color: #FFF;
    width: auto;
    font-weight: 400;
  } 
  .inner-page__modal.theme_modal .modal-body{
    padding: 0 !important;
  }

  .searchfrmbox input.input_search{
    padding: 5px 15px;
    border-radius: 20px;
    width: 100%;
    border: none;
    color: #0fbdc8;
    padding-left: 50px;

  }
  .searchfrmbox .search_button i{
    font-size: 20px;
    color: #000000;
    position: absolute; 
    top: 8px;
    left: 15px;
   
  }
  @media (max-width: 991.98px) {
    .inner-page__modal.theme_modal .modal-bg {
      display: none;
    }
  }	
    @media (max-width: 767px) {
  .inner-modal__title h4{
    text-align: center;
    margin: 15px 0;
  }
  }

  / LOCATION MOBILE /
  .dgGlobal-location__menu-offices .accordion-flush>.accordion-item {
      border: none !important;
      margin-bottom: 8px;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      transition: all 0.5s ease-in-out;
    }
  
    .dgGlobal-location__menu-offices .accordion-flush>.accordion-item .accordion-button {
      border: none;
      box-shadow: unset;
      padding: 0;
    }
  
    .dgGlobal-location__menu-offices .accordion-flush>.accordion-item .accordion-button::after {
      width: 16px;
      height: 10px;
      background-size: contain;
      position: absolute;
      right: 28px;
      z-index: 9;
      background-image: url("../images/dioz-arrow.png");
      top: 52%;
      transform: translateY(-50%);
    }
  
    .dgGlobal-location__menu-offices .accordion-flush>.accordion-item .dgGlobal-location__office-box {
      background-color: transparent;
      width: 100%;
      padding: 0;
      overflow: hidden;
      display: flex;
      align-items: center;
      position: relative;
      z-index: 1;
    }
  
    .dgGlobal-location__menu-offices .accordion-flush>.accordion-item .img-part {
      position: absolute;
      width: 100%;
      left: 0;
      z-index: -1;
    }
  
    .dgGlobal-location__menu-offices .accordion-flush>.accordion-item .img-part::before {
      position: absolute;
      content: '';
      width: 100%;
      height: 100%;
      background-color: #00000030;
      z-index: 0;
    }
  
    .dgGlobal-location__menu-offices .accordion-flush>.accordion-item .img-part img {
      width: 100%;
      object-fit: cover;
      height: auto;
      object-position: center;
    }
  
    .dgGlobal-location__menu-offices .accordion-item .dgGlobal-location__office-box .title {
      padding: 24px 18px 15px;
    }
  
    .dgGlobal-location__menu-offices .accordion-item .dgGlobal-location__office-box .title h5 {
      text-align: left;
      width: 100%;
      font-size: 18px;
      margin-top: 0;
      text-transform: uppercase;
      font-weight: 600;
      line-height: 32px;
      color: #fff;
    }
  
    .dgGlobal-location__menu-offices .accordion-item .dgGlobal-location__office-box .title h5 span {
      display: none;
    }
  
    .dgGlobal-location__menu-offices .accordion-flush>.accordion-item .accordion-body {
      padding: 15px 15px;
      background-color: #e8e8e8;
    }
  
    .dgGlobal-location__menu-offices .accordion-flush>.accordion-item .accordion-body .dgGlobal-location__contact-list {
      margin-top: 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
  
    .dgGlobal-location__menu-offices .accordion-flush>.accordion-item .accordion-body .dgGlobal-location__contact-list li {
      color: #202020;
      font-size: 14px;
      position: relative;
      padding-left: 20px;
    }
  
    .dgGlobal-location__menu-offices .accordion-flush>.accordion-item .accordion-body .dgGlobal-location__contact-list li a {
      color: inherit;
    }
  
    .dgGlobal-location__menu-offices .accordion-flush>.accordion-item .accordion-body .dgGlobal-location__contact-list li span {
      position: absolute;
      left: 0;
      font-size: 12px;
      top: 2px;
    }
	.modal_home_popup .modal-dialog{
		    max-width: 720px;
	}
	.modal_home_popup .btn-close{
		position: absolute;
		right: 5px;
		top: 5px;
	}
	.modal_left_side img{
		 max-height: 70vh;
		object-fit: cover;
		object-position: top;
		border-radius: 10px 0 0 10px;
	}
	.modal_home_popup .modal_body{
		max-height: 70vh;
		min-height: 400px;
	}
	.modal_home_popup.modal{
		background: #00000020;
		padding: 0 12px !important;
	}
	.modal_home_popup .modal-content{
		    border: none;
    		border-radius: 10px;
	}
	.modal_home_popup .newsletter_signup{
		    display: flex;
		flex-direction: column;
		gap: 10px;
		    position: relative;
	}
	.modal_home_popup .modal_right_side h3{
		text-transform: uppercase;		    
		font-size: 22px;
		line-height: 28px;
		margin-bottom: 5px;
	}
	.modal_home_popup .newsletter_signup input[type=email]{
		padding: 10px 15px;
		border-radius: 25px;
	}
	.modal_home_popup .wpcf7-spinner{
		position: absolute;
		transform: translate(-50%, -50%);
		top: 30%;
		left: 45%;
	}
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 9999999;
  pointer-events: none;
}
.cursor div {
  position: absolute;
  display: grid;
  place-items: center;
}
.cursor div div {
  border: 1px solid #fff;
  border-radius: 50%;
  animation: pulse 2.5s linear infinite;
  box-shadow: 0 0 50px 5px #d7abff6e;
}
.cursor div:nth-child(1),
.cursor div:nth-child(2) {
  width: 100%;
  height: 100%;
}
.cursor div:nth-child(1) {
  transition: transform 0.2s ease-out;
}
.cursor div:nth-child(2) {
  transition: transform 0.1s ease-out;
}
.cursor div:nth-child(2) div {
  background: #fff;
  border-radius: 50%;
  width: 4px;
  height: 4px;
}
#comments .comment-list{
	display: none;
}
	/*Start Contact Us*/
		
	/*END Contact Us*/





#datafetch.fetchresult {
    display: block !important;
    position: absolute;
    z-index: 9999;
    background: white;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}





