/*=====Reset CSS======*/

article,
aside,
canvas,
figure,
figcaption,
footer,
header,
nav,
section,
audio,
video,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
label {
  margin: 0;
  padding: 0;
  border: 0;
}

a,
button,
input,
input[type="button"],
input[type="submit"],
select,
.btn,
textarea {
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  text-decoration: none;
  font-style: normal;
}

a:focus,
button:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
select:focus,
.btn:focus,
textarea:focus,
.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none !important;
}

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

a,
label {
  display: inline-block;
  vertical-align: middle;
  vertical-align: 0;
}

figure {
  -webkit-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  transition: all ease 0.4s;
  margin: 0;
  font-size: 0;
  line-height: 100%;
}

figure,
img {
  max-width: 100%;
}

ul,
ol {
  list-style: none;
  /* text-transform: capitalize; */
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


/* Firefox */

input[type=number] {
  -moz-appearance: textfield;
}


.svg_container {
  display: none;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 30px;
  color: var(--Para-Color);
  background: var(--white_color);
  font-family: var(--body_font);
  overflow-x: hidden;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

p {
  font-weight: 400;
  /* text-transform: capitalize; */
  margin-bottom: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--heading_color);
  border-radius: 10px;
}

::-webkit-scrollbar {
  background: var(--white_color);
  width: 7px;
}

::-moz-selection {
  background-color: var(--vivid_yellow);
  color: var(--black_color);
}

::selection {
  background-color: var(--vivid_yellow);
  color: var(--black_color);
}

/* Reset-css--------------- */

:root {
  --black_color: #000;
  --white_color: #fff;
  --vivid_yellow: #E5DE00;
  --heading_color: #151619;
  --para_color: #444444;
  --acent_color: #F5F5F5;
  --border_color: #AEAEAE;
  --body_font: "Onest", sans-serif;
  --heading_font: "Aspekta", sans-serif;
  --transition: 0.4s all ease-in-out
}

/* Global Headings */
.gap {
  padding: 70px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading_font);
  text-transform: capitalize;
  color: var(--heading_color);
}

h1 {}

h1 span {}


h2 {
  font-size: 56px;
  font-weight: 400;
  line-height: 60px;
}

h2 span {}

h3 {
  font-size: 35px;
  font-weight: 400;
  line-height: 1.4;
}


h4 {}

h5 {}

h6 {}

.global_btn {
  border-radius: 4px;
  background: var(--vivid_yellow);
  color: var(--heading_color);
  font-family: var(--heading_font);
  padding: 11px 55px 11px 18px;
  position: relative;
  border: 1px solid var(--vivid_yellow);
}

.global_btn:hover {
  background: var(--heading_color);
  color: var(--white_color);
  border-color: transparent;
}

.global_btn:hover::after {
  color: var(--white_color);
  right: 15px;
}

.global_btn::after,
.whitebtn::after {
  content: '\f105 ';
  position: absolute;
  font-family: 'fontawesome';
  color: var(--heading_color);
  font-size: 20px;
  right: 20px;
  top: 49%;
  bottom: 0;
  margin: auto;
  transform: translateY(-50%);
  transition: var(--transition);
}

.whitebtn {
  border-radius: 4px;
  background: var(--white_color);
  color: var(--heading_color);
  font-family: var(--heading_font);
  padding: 11px 55px 11px 18px;
  border: 1px solid var(--heading_color);
}

.whitebtn:hover {
  background: var(--heading_color);
  color: var(--white_color);
  border-color: var(--white_color);
}

.whitebtn:hover::after {
  color: var(--white_color);
  right: 15px;
}

a {
  transition: var(--transition);
  position: relative;
}

a:hover {
  text-decoration: none;
}

section {
  position: relative;
}

/* Global Headings */


/* Header Start ---------------*/

.sticky_hdr .header {
  filter: drop-shadow(0px 15px 25px rgba(0, 76, 102, 0.15));
  -webkit-filter: drop-shadow(0px 15px 25px rgba(0, 76, 102, 0.15));
  /* padding: 15px 0; */
  top: 0;
  background: var(--heading_color);
}

.sticky_hdr .navlist {
  padding: 2px 0;
}

.sticky_hdr .header_logo {
  max-width: 70px;
}

.sticky_hdr .navlink {
  font-size: 18px;
}

/* sticky */


.hdrmobile_logo {
  display: none;
}

.menu-link-wrapper {
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: none;
}

.line {
  background: var(--black_color);
  width: 30px;
  height: 3px;
  display: block;
  margin: 3px 0;
}

.header_listing_holder {
  flex-grow: 1;
  justify-content: center;
  display: flex;
}

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

.navlink {
  text-transform: capitalize;
  position: relative;
  line-height: 1;
  color: var(--white_color);
  font-family: var(--heading_font);
  font-weight: 300;
}

.navitem {
  position: relative;
  padding: 9px 30px;
}

.navlist {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border: 1px solid var(--white_color);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  top: 40px;
  transition: var(--transition);
  padding: 0 0 8px 0;
  background: transparent;
}


.header_logo {
  max-width: 100px;
  transition: var(--transition);
}


.navlink:hover {
  color: var(--vivid_yellow);
}

.navlink:hover::after {
  width: 100%;
  right: unset;
  left: 0;
}

.navlink::after {
  position: absolute;
  content: '';
  background: var(--vivid_yellow);
  bottom: -5px;
  left: unset;
  right: 0;
  width: 0;
  height: 1px;
  transition: var(--transition);
}

.header_btn .global_btn {
  border: 1px solid transparent;
}

.header_btn .global_btn:hover {
  border-color: var(--white_color);
}


/* Scroll-up */
.sticky_hdr .header.nav-up {
  top: -120px;
}

/* Header End----------- */

/* Home Page Start */

.banner_video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.w100 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.banner__section {
  min-height: 100vh;
	    z-index: 2;
}

.banner__section::after {
  content: '';
  position: absolute;
  background: linear-gradient(0.00deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.9) 100%);
  inset: 0;
}

.banner__content_wrpr {
  position: absolute;
  bottom: 50px;
  z-index: 1;
  left: 0;
  right: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.banner__section .container {
  position: relative;
  min-height: 100vh;
}

.hammer_tag h4 {
  color: var(--white_color);
  font-size: 20px;
  text-transform: uppercase;
  padding-left: 30px;
  position: relative;
  letter-spacing: 0.1px;
  font-weight: 600;
  font-family: var(--body_font);
}

.hammer_tag h4::after {
  width: 16px;
  height: 16px;
  background: var(--vivid_yellow);
  position: absolute;
  content: '';
  left: 3px;
  top: 3px;
  border-radius: 2px;
  left: -50px;
  transition: 0.8s all ease-in-out;
  transform: rotate(0deg);
  opacity: 0;
}

.active_section .hammer_tag h4::after {
  left: 3px;
  transform: rotate(90deg);
  opacity: 1;
}

.hammer_tag {
  margin-bottom: 40px;
  position: relative;
  transition: var(--transition);
}

.banner__content_wrpr h1 {
  font-size: 56px;
  font-weight: 400;
  line-height: 60px;
  text-transform: capitalize;
  color: var(--white_color);
}

.banner__content_wrpr h1 span {
  display: inline-block;
  position: relative;
}

.banner__content_wrpr h1 span::after {
  content: '';
  width: 9px;
  height: 9px;
  background: var(--vivid_yellow);
  display: inline-block;
}

.banner__content_wrpr .left_contents {
  width: 45%;
  flex: 0 0 auto;
  border-bottom: 1px solid var(--white_color);
  padding-bottom: 30px;
}

.banner__content_wrpr .right_contents {
  width: 30%;
  flex: 0 0 auto;
  border-bottom: 1px solid var(--white_color);
  padding-bottom: 30px;
}

.banner__content_wrpr .right_contents p {
  color: var(--white_color);
  font-size: 20px;
  /* text-transform: capitalize; */
}

.banner__social_icons {
  position: absolute;
  top: 38%;
  right: 0;
  z-index: 1;
}

.banner__social_icons ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.banner__social_icons ul a {
  color: var(--white_color);
  font-size: 25px;
  width: 100%;
  height: 100%;
}

.banner__social_icons ul a:hover {
  color: var(--vivid_yellow);
}


.about_images_wrap li span {
  width: 100%;
  height: 390px;
  display: block;
  margin-bottom: 5px;
}

.about_images_wrap span img {
  border-radius: 4px;
}

.about_images_wrap {
  display: flex;
}

.about_images_wrap ul {
  width: 50%;
  flex: 0 0 auto;
  padding: 0 3px;
}

.about_images_wrap li span.abt_img2 {
  height: 328px;
}

.about_images_wrap li span.abt_img3 {
  height: 507px;
}

.about_images_wrap li span.abt_img4 {
  height: 211px;
}

.blacktag h4 {
  color: var(--heading_color);
  /* border-bottom: 1px solid var(--border_color); */
  padding-bottom: 18px;
}

.blacktag::before {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background: var(--border_color);
  bottom: 0;
  transition: 1.3s all ease;
}

.global_heading {
  margin-bottom: 50px;
}

/* .global_heading h2 {
  font-size: 56px;
  font-weight: 400;
  line-height: 60px;
} */

.about_section_left .global_heading h2 {
  max-width: 700px;
}


.global_heading h2 span {
  position: relative;
}

.global_heading h2 span::after {
  content: '';
  width: 9px;
  height: 9px;
  background: var(--vivid_yellow);
  display: inline-block;
  margin-left: 4px;
}

.about_section_btnwrpr ul {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
  row-gap: 15px;
}

.about_mission_listing .contents h3 {
  margin-bottom: 15px;
}

.mv_wrppar {
  display: flex;
  justify-content: space-between;
}

.mv_wrppar .icon {
  border-radius: 4px;
  background: var(--acent_color);
  width: 123px;
  height: 123px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  transition: var(--transition);
}

.mv_wrppar .icon img {
  max-width: 72px;
}

.mv_wrppar .contents {
  width: 70%;
  flex: 0 0 auto;
}

.about_mission_listing ul li {
  padding-top: 25px;
  border-top: 1px solid var(--border_color);
  margin-top: 30px;
  transition: var(--transition);
}

.about_mission_listing ul li:hover .mv_wrppar .icon {
  background: var(--vivid_yellow);
}

.about_section_left {
  padding-right: 40px;
}

.home_manufacturing {
  background: var(--acent_color);
}

.maufacturing_left_contents .global_heading {
  margin-bottom: 30px;
}

.check__listing {
  margin: 35px 0;
}

.check__listing li {
  font-weight: 400;
  padding-left: 40px;
  position: relative;
}

.check__listing li::after {
  content: '';
  position: absolute;
  background: url(../images/check.webp) no-repeat left;
  width: 25px;
  height: 25px;
  left: 0;
  top: 1px;
}

.check__listing li+li {
  margin-top: 20px;
}

.iso_imglisting ul {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 45px;
  flex-wrap: wrap;
}

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

.manufacturing_right_contents::after {
  width: 370px;
  height: 370px;
  background: var(--vivid_yellow);
  border-radius: 4px;
  position: absolute;
  content: '';
  left: 0;
  top: 0;
}

.manufacturing_right_contents::before {
  width: 370px;
  height: 370px;
  background: var(--heading_color);
  border-radius: 4px;
  position: absolute;
  content: '';
  right: 0;
  bottom: 0;
}

.manufacturing_right_contents img {
  padding: 15px;
  z-index: 1;
  position: relative;
}

.maufacturing_left_contents {
  padding-right: 30px;
}

.home_products_wrpr .left_contents {
  max-width: 674px;
}

.home_products_wrpr .right_contents {
  max-width: 562px;
}

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

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

.products__gloves_wrpr>ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 6px;
}

.products__gloves_wrpr>ul>li {
  width: 100%;
  flex: 0 0 auto;
  padding: 0 3px;
}

.gloves_card {
  border-radius: 4px;
  background: var(--acent_color);
  padding: 12px;
  position: relative;
  transition: var(--transition);
}

.gloves_card:hover {
  background: var(--vivid_yellow);
}

.gloves_card:hover .titles_wrp h3 {
  color: var(--heading_color);
  transition: var(--transition);
}

.gloves_card:hover .titles_wrp .arrow {
  background: var(--white_color);
}

.gloves_card .image {
  max-width: 600px;
  height: 600px;
  margin: 18px auto;
  transition: var(--transition);
}

.gloves_card h6 {
  color: var(--heading_color);
  font-family: var(--body_font);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 4px;
  background: var(--white_color);
  display: inline-block;
  padding: 7px 10px;
}

.about_pr_imgs ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 12px;
  top: 12px;
}

.about_pr_imgs ul li+li {
  margin-top: 10px;
}

.about_pr_imgs img {
  width: 55px;
  height: 64px;
  object-fit: contain;
}

.gloves_card .titles_wrp h3 {
  color: var(--para_color);
  font-family: var(--body_font);
  font-size: 20px;
  font-weight: 400;
  padding-right: 20px;
  line-height: 1.4;
  transition: var(--transition);
}

.gloves_card .titles_wrp {
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.gloves_card .btn_wrp {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.yellow_arrow {
  width: 44px;
  height: 52px;
  background: var(--vivid_yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex: 0 0 auto;
  color: var(--heading_color);
}

.eye_icon {
  width: 44px;
  height: 52px;
  background: var(--white_color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex: 0 0 auto;
  color: var(--heading_color);
}

.eye_icon:hover {
  background: var(--heading_color);
  color: var(--white_color);
}

.gloves_card:hover .yellow_arrow {
  background: var(--white_color);
}

.gloves_card .yellow_arrow:hover {
  background: var(--heading_color);
  color: var(--white_color);
}

.yellow_arrow:hover {
  background: var(--heading_color);
  color: var(--white_color);
}


.gloves_card .titles_wrp .arrow {
  background: var(--vivid_yellow);
}


.gloves_card .titles_wrp .arrow i {
  transition: var(--transition);
}

.gloves_card .titles_wrp .arrow:hover i {
  transform: translateX(2px);
}

.gloves_card:hover .image {
  scale: 1.05;
}

.filter_tab_group .gloves_card:hover .image {
  scale: 1.1;
}


.products__gloves_wrpr>h4 {
  color: var(--heading_color);
  font-family: var(--body_font);
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  background: var(--vivid_yellow);
  border-radius: 4px;
  display: block;
  margin: 0 auto 20px;
  width: max-content;
  padding: 8px 15px;
}

.viewall_btn {
  text-align: center;
  margin-top: 30px;
}

.products__gloves_wrpr {
  border: 1px solid var(--border_color);
  border-radius: 4px;
  padding: 25px 6px;
}

.home__choose_wrp ul li {
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: var(--acent_color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 38px;
}

.home_choose_card h3 {
  font-size: 26px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 15px;
}

.home_choose_card p {
  color: var(--heading_color);
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
}

.home__choose_wrp ul li:nth-child(1) h3 {
  font-size: 34px;
  line-height: 1.1;
}

.home__choose_wrp ul li:nth-child(2) h3 {
  font-size: 30px;
  line-height: 1.1;
}

.home__choose_wrp ul li:nth-child(2) h3,
.home__choose_wrp ul li:nth-child(2) p {
  color: var(--white_color);
}

.home__choose_wrp ul li:nth-child(1) {
  width: 470px;
  height: 470px;
  background: var(--vivid_yellow);
}

.home__choose_wrp ul li:nth-child(2) {
  width: 380px;
  height: 380px;
  position: absolute;
  right: 0;
  top: 200px;
  background: var(--black_color);
}

.home__choose_wrp ul li:nth-child(3) {
  position: absolute;
  right: 310px;
}

.home__choose_wrp {
  position: relative;
}

.home__choose_wrp::after {
  content: '';
  position: absolute;
  background: url(../images/rotate_vector.webp) no-repeat center;
  width: 850px;
  height: 850px;
  left: 0px;
  top: -10px;
  scale: 0.9;
  z-index: -1;
  transform: rotate(15deg);
  animation: infiniteRotate 10s linear infinite;
}

.home_choose_text {
  display: flex;
  flex-direction: column;
  margin-top: 260px;
  height: 100%;
  justify-content: end;
}


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

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

.home_choose_text .global_btn {
  width: max-content;
}

.home_choose {
  min-height: 100vh;
}

.number_heading .global_heading {
  max-width: 640px;
  margin-bottom: 30px;
}

.number_heading {
  padding-right: 80px;
}

.numbercard_row>*:nth-child(odd) .numbers_card {
  background: var(--vivid_yellow);
}

.numbers_card .icon {
  filter: brightness(0) saturate(100%);
}

.numbercard_row>*:nth-child(even) .numbers_card {
  border: 1px solid var(--heading_color);
}

.numbers_card {
  text-align: center;
  border-radius: 4px;
  padding: 40px 20px;
  height: 100%;
}

.numbers_card .icon {
  width: 120px;
  height: 120px;
  margin: auto;
  margin-bottom: 20px;
}

.numbers_card h3 {
  margin-bottom: 10px;
}

.numbercard_row {
  margin-top: 20px;
  row-gap: 20px;
  justify-content: end;
}

.numfirst {
  margin-left: 85px;
}


.numbers_card p {
  color: var(--heading_color);
}

.number_vicon {
  height: 100%;
  text-align: center;
  display: flex;
  align-items: end;
  justify-content: center;
  perspective: 1000px;
}

.laboratory_tab_group .global_heading {
  margin-bottom: 30px;
}

.tab_btn_wrp {
  display: flex;
  flex-direction: column;
}

.number_vicon img {
  animation: RotateYHue 13s linear infinite;
  transform-style: preserve-3d;
}

@keyframes RotateYHue {
  0% {
    transform: rotateY(0deg);
    filter: hue-rotate(0deg) saturate(1.2) brightness(1);
  }

  25% {
    transform: rotateY(90deg);
    filter: hue-rotate(90deg) saturate(1.5) brightness(1.2);
  }

  50% {
    transform: rotateY(180deg);
    filter: hue-rotate(180deg) saturate(1.8) brightness(1.1);
  }

  75% {
    transform: rotateY(270deg);
    filter: hue-rotate(270deg) saturate(1.4) brightness(1.3);
  }

  100% {
    transform: rotateY(360deg);
    filter: hue-rotate(360deg) saturate(1.2) brightness(1);
  }
}



.home_csr_slider .container-fluid {
  padding: 0;
}

.home_csr_slider {
  background: var(--acent_color);
  overflow-x: hidden;
}

.home_csr_hdng {
  max-width: 700px;
}

.csr_slider_item .item_holder {
  display: flex;
  column-gap: 60px;
  padding: 25px;
  background: var(--white_color);
  border-radius: 4px;
  height: 100%;
}

.csr_slider_item {
  padding: 0 12px;
  height: auto;
}

.csr_slider_item .item_contents {
  max-width: 370px;
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: space-between;
}

.csr_slider_item .item_contents h3 {
  line-height: 1.3;
}

.csr_btn {
  margin-top: auto;
  flex: 0 0 auto;
}

.csr_arrows_wrp button {
  width: 60px;
  height: 50px;
  border: none;
  background: transparent;
}

.csr_arrows_wrp button:hover {
  background: var(--vivid_yellow);
}

.csr_arrows_wrp {
  text-align: right;
}

.csr_arrows_wrp .holder {
  border: 1px solid var(--heading_color);
  border-radius: 8px;
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.csr_arrows_wrp .holder::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 18px;
  left: 50%;
  top: 0;
  background: var(--heading_color);
}

.labtab_contents_group .yellow_arrow {
  margin-top: auto;
}

.csr_arrows_wrp .holder::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 18px;
  left: 50%;
  bottom: 0;
  background: var(--heading_color);
}

.csr_arrows_wrp {
  position: absolute;
  left: 0;
  right: 0;
  top: -100px;
}

.csr_slider_group {
  position: relative;
}

.csr_slider_item .image {
  flex-grow: 1;
  /* height: 480px; */
  height: 100%;
}

.csr_slider_group .slick-track {
  display: flex;
}

.labtab_contents_group {
  border-radius: 4px;
  padding: 20px;
}

.labtab_contents_group .contents h3 {
  color: var(--heading_color);
  font-size: 28px;
  line-height: 33px;
  max-width: 200px;
  margin-bottom: 20px;
}

.labtab_contents_group .contents p {
  color: var(--heading_color);
}

.labtab_contents_group .image {
  width: 100%;
  height: 530px;
}

.labtab_contents_group .contents {
  height: 100%;
  display: flex;
  flex-direction: column;
}


.yellow_arrow i {
  transition: var(--transition);
}

.yellow_arrow:hover i {
  transform: translateX(2px);
}

.laboratory_tab_group .nav-link {
  color: var(--heading_color);
  text-transform: uppercase;
  text-align: left;
  padding-left: 20px;
  position: relative;
  display: inline-block;
  max-width: max-content;
  transition: var(--transition);
}

.laboratory_tab_group .nav-link::after {
  width: 10px;
  height: 1px;
  background: var(--heading_color);
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transition: var(--transition);
}

.laboratory_tab_group .nav-pills .nav-link.active {
  background: var(--vivid_yellow);
  color: var(--heading_color);
  font-size: 28px;
  padding-left: 40px;
}

.laboratory_tab_group .nav-pills .nav-link.active::after {
  width: 30px;
}

.laboratory_tab_group .tab-content {
  background: var(--acent_color);
  margin-left: 20px;
}

.map_heading {
  max-width: 600px;
}

.map_country h6 {
  font-size: 20px;
  line-height: 30px;
  transition: var(--transition);
}

.map_countryname ul li {
  margin-bottom: 11px;
  position: relative;
  padding-left: 30px;
  transition: var(--transition);
  cursor: pointer;
}

.map_countryname ul li::after {
  width: 16px;
  height: 16px;
  background: var(--vivid_yellow);
  position: absolute;
  content: '';
  left: 3px;
  top: 6px;
  border-radius: 2px;
}

.map_image {
  margin-top: -95px;
  margin-left: 25px;
  position: relative;
}

.home_blog_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.home_blog_heading .global_heading {
  margin-bottom: 0;
}

.home_blog_image {
  width: 100%;
}

.home_blogs_listings a {
  display: flex;
  align-items: start;
  column-gap: 20px;
  padding: 28px 18px;
  border-radius: 4px;
}

.home_blogs_listings a:hover {
  background: var(--vivid_yellow);
}

.blog_date {
  flex: 0 0 auto;
  color: var(--white_color);
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  border-radius: 4px;
  background: var(--heading_color);
  padding: 3px 10px;
  margin-top: 9px;
}

.home_blogs_listings h4 {
  font-size: 21px;
  line-height: 1.6;
}

.home_blogs_listings ul li+li {
  margin-top: 20px;
}

.hm_blg_cnct_group h3 {
  font-size: 28px;
  line-height: 35px;
  margin-bottom: 20px;
  max-width: 300px;
}

.hm_blg_cnct_group {
  display: flex;
  align-items: end;
  column-gap: 20px;
  margin-bottom: 20px;
}

.home_blogs_right {
  border-radius: 4px;
  background: var(--acent_color);
  padding: 20px;
  margin-left: 20px;
}

.yt_icon {
  border-radius: 4px;
  position: absolute;
  bottom: -2px;
  background: var(--acent_color);
  padding: 10px;
  left: -3px;
}

.hm_blg_cnct_group p {
  font-size: 20px;
}

.home_connect_lefts .global_heading {
  max-width: 500px;
}

.contact_listing ul li,
.contact_listing ul li a {
  color: var(--para_color);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  display: flex;
  align-items: start;
  column-gap: 15px;
}

.contact_listing ul li a:hover {
  color: var(--heading_color);
}

.contact_listing ul li i {
  margin-top: 5px;
}

.contact_listing ul li+li {
  margin-top: 25px;
}

.contact_listing {
  margin-top: 40px;
}

.home_connect_forms {
  border-radius: 4px;
  background: var(--acent_color);
  padding: 30px;
  height: 100%;
  margin-left: 80px;
}

.home_connect_forms h3 {
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 25px;
}

.form_input label {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-transform: capitalize;
  display: block;
  margin-bottom: 8px;
}

.input_card,
.textarea_card {
  border-radius: 4px;
  background: var(--white_color);
  width: 100%;
  height: 65px;
  border: 1px solid transparent;
  padding: 15px 20px;
  color: var(--heading_color);
  font-size: 18px;
}

.input_card:focus-visible {
  outline: none;
}

.input_card:focus,
.textarea_card:focus {
  border-color: var(--heading_color);
}

.input_card::placeholder,
.textarea_card::placeholder {
  font-size: 18px;
}

.textarea_card {
  height: 140px;
  resize: none;
}

.form_input {
  margin-bottom: 14px;
}

.form_input .global_btn {
  width: max-content;
  margin-left: auto;
  padding: 0;
  transition: var(--transition);
}

.form_input .global_btn:hover .submit_now {
  color: var(--white_color);
}

.submit_now {
  width: 100%;
  background: transparent;
  border: none;
  padding: 11px 55px 11px 18px;
  font-weight: 500;
}

.home_connect_forms .row>*:last-child .form_input {
  margin-bottom: 0;
}

.certifiactions_heading {
  max-width: 780px;
}

/* Footer Start------------------------------------- */


.footer__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--white_color);
  padding-bottom: 28px;
  margin-bottom: 30px;
}

.footer__nav>ul {
  display: flex;
  align-items: center;
  column-gap: 60px;
  width: 560px;
  flex-wrap: wrap;
  row-gap: 10px;
}

.footer_btm_left,
.footer_btm_right {
  width: 560px;
  flex: 0 0 auto;
}

.footer_icon ul {
  display: flex;
  align-items: end;
  gap: 10px;
  justify-content: center;
  margin-bottom: 10px;
  flex-direction: column;
}

.footer_background .w100 {
  border-radius: 0;
}

.footer_icon a i {
  display: none;
}

.credit {
  text-align: center;
  border-top: 1px solid var(--white_color);
  padding-top: 20px;
  margin-top: 20px;
}

.credit p {
  color: var(--white_color);
  font-weight: 300;
  font-family: var(--heading_font);
  margin-bottom: 0;
}

.footer_icon a {
  color: var(--white_color);
  font-weight: 300;
}

.footer__nav .footer_icon ul li a {
  font-size: 25px;
}

.footer__nav .footer_icon ul li a::after {
  display: none;
}

.footer__nav ul li a {
  color: var(--white_color);
  font-weight: 300;
  font-family: var(--heading_font);
  position: relative;
}

.footer__nav ul li a:hover,
.footer_icon a:hover {
  color: var(--vivid_yellow);
}

.footer__nav ul li a::after {
  position: absolute;
  content: '';
  background: var(--vivid_yellow);
  bottom: -1px;
  left: unset;
  right: 0;
  width: 0;
  height: 1px;
  transition: var(--transition);
}

.footer__nav ul li a:hover::after {
  width: 100%;
  right: unset;
  left: 0;
}

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


.footer_btm_left li a i {
  margin-top: 4px;
}

.footer_btm_left>ul a {
  color: var(--white_color);
  font-weight: 300;
  font-family: var(--heading_font);
  position: relative;
  display: flex;
  column-gap: 16px;
}

.footer_btm_left>ul a:hover {
  color: var(--vivid_yellow);
}

.footer_btm_left>ul a:hover::after {
  background: var(--vivid_yellow);
}

.footer_btm_left>ul a::after {
  content: '';
  position: absolute;
  background: var(--white_color);
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transition: var(--transition);
  display: none;
}

.footer_btm_left ul {
  display: flex;
  align-items: start;
  column-gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  row-gap: 15px;
  flex-direction: column;
}

.footer_btm_left p {
  color: var(--white_color);
  font-weight: 300;
  font-family: var(--heading_font);
  margin-bottom: 0;
}

.footer_btm_left p a {
  color: var(--white_color);
}

.footer_btm_left p a:hover {
  color: var(--vivid_yellow);
}

.footer {
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: auto;
}

.footer_logo_wrpr {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 120px;
  max-width: 330px;
  margin: 0 auto 10px;
}

.footer_logo {
  animation: RotateYHue 13s linear infinite;
  transform-style: preserve-3d;
}

.footer_background {
  position: absolute;
  bottom: 0;
  top: -80px;
  left: 0;
  right: 0;
  z-index: -1;
}

.footer__nav>*:last-child {
  justify-content: end;
}

/* Footer End------------------------------------- */


.home_certifications_slider .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 470px;
  background-color: var(--white_color);
  overflow: hidden;
  border-radius: 4px;
}


.home_certifications_slider .swiper-container-3d .swiper-slide-shadow-left,
.home_certifications_slider .swiper-container-3d .swiper-slide-shadow-right {
  background-image: none;
}

.swiper-wrapper .swiper-slide:nth-child(5n + 1) .certification_card {
  background: var(--vivid_yellow);
}

.swiper-wrapper .swiper-slide:nth-child(5n + 2) .certification_card {
  background: var(--white_color);
}

.swiper-wrapper .swiper-slide:nth-child(5n + 3) .certification_card {
  background: var(--black_color);
}

.swiper-wrapper .swiper-slide:nth-child(5n + 3) .card_number h6,
.swiper-wrapper .swiper-slide:nth-child(5n + 3) .certification_card p {
  color: var(--white_color);
}

.swiper-wrapper .swiper-slide:nth-child(5n + 3) .card_number {
  border-bottom: 1px solid var(--white_color);
}

.swiper-wrapper .swiper-slide:nth-child(5n + 4) .certification_card {
  background: #61C5C7;
}

.swiper-wrapper .swiper-slide:nth-child(5n + 5) .certification_card {
  background: #B6CAE0;
}

.card_number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--black_color);
  margin-bottom: 25px;
}

.card_number h6 {
  color: var(--black_color);
  font-family: var(--body_font);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.certification_card {
  padding: 45px;
  text-align: center;
}

.certification_card .image {
  max-width: 250px;
  margin: 0 auto 20px;
}

.certification_card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black_color);
}

.home_certifications_slider .swiper-slide-active {
  box-shadow: 0px 1px 9px 0px rgba(0, 0, 0, 0.25);
}

.home_certifications {
  background: var(--acent_color);
}

.home_certifications_slider .swiper-button-next {
  width: 70px;
  background: var(--white_color);
  height: 60px;
  border-radius: 8px;
  border: 1px solid var(--black_color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: var(--black_color);
  left: 50%;
  margin-left: 200px;
}

.home_certifications_slider .swiper-button-prev {
  width: 70px;
  background: var(--white_color);
  height: 60px;
  border-radius: 8px;
  border: 1px solid var(--black_color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: var(--black_color);
  left: 50%;
  margin-left: -270px;
}

.home_certifications_slider .swiper {
  padding: 10px 0;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background: var(--vivid_yellow);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  z-index: 9999;
}

.active_section .blacktag::before {
  width: 100%;
}

.home_blog_image ul li {
  display: none;
  height: 410px;
}

.home_blog_image ul li.active {
  display: block;
}

.headerbtn_modal .home_connect_forms {
  margin-left: 0;
  border: 1px solid var(--vivid_yellow);
}

.headerbtn_modal .modal-dialog {
  max-width: 1000px;
  margin: auto;
  min-height: 100vh;
}

.headerbtn_modal .modal-body {
  padding: 0;
}

.headerbtn_modal .form_input label {
  font-size: 17px;
  margin-bottom: 4px;
}

.headerbtn_modal .input_card,
.headerbtn_modal .textarea_card {
  height: 55px;
  font-size: 16px;
}

.headerbtn_modal .input_card::placeholder,
.headerbtn_modal .textarea_card::placeholder {
  font-size: 16px;
}

.headerbtn_modal .textarea_card {
  height: 140px;
}

.headerbtn_modal .modal-header {
  border: none;
}

.headerbtn_modal .home_connect_forms h3 {
  font-size: 28px;
  text-align: center;
}

.gloves_btn_close {
  position: absolute;
  right: 0;
  background: var(--vivid_yellow);
  border-bottom-left-radius: 25px;
  width: 54px;
  height: 50px;
  opacity: 1;
  border: none;
  border-top-right-radius: 4px;
}

.gloves_btn_close:hover {
  background: var(--heading_color);
}

.gloves_btn_close:hover::after {
  color: var(--white_color);
}

.gloves_btn_close::after {
  content: '\f00d';
  position: absolute;
  font-family: "fontawesome";
  font-size: 24px;
  color: var(--black_color);
  display: flex;
  align-items: center;
  justify-content: center;
  left: 5px;
  right: 0;
  top: -3px;
  bottom: 0;
  transition: var(--transition);
}

.headerbtn_modal .modal-content {
  border: none;
}

.quickview_modal .modal-body {
  padding: 0;
}

.quickview_modal .modal-dialog {
  max-width: 1200px;
  margin: auto;
}

.quickview_modal .check__listing li {
  color: var(--heading_color);
  font-size: 18px;
  padding-left: 30px;
}

.quickview_modal .check__listing li::after {
  top: 3px;
  scale: 0.8;
}

.mdl_prdct_image {
  max-width: 500px;
  height: 500px;
  margin: auto;
  position: relative;
}

.mdl_prdct_image::before {
  content: '';
  position: absolute;
  background: var(--border_color);
  height: 140px;
  width: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.mdl_prdct_image::after {
  content: '';
  position: absolute;
  background: var(--border_color);
  height: 140px;
  width: 1px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.quickview_mdl_wrp .row {
  align-items: center;
}

.modal .modal-content {
  box-shadow: 4px 6px 20px 2px rgba(0, 0, 0, 0.25);
  border: none;
}

.mdl_prdct_name h2 {
  font-family: var(--body_font);
  font-size: 45px;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 20px;
  background: var(--white_color);
  border-radius: 4px;
  margin-bottom: 20px;
}

.mdl_prdct_name h3 {
  font-family: var(--body_font);
  font-size: 20px;
  line-height: 34px;
  padding-left: 25px;
}

.mdl_btn_wrp {
  display: flex;
  align-items: center;
  justify-content: end;
  column-gap: 15px;
}

.quickview_mdl_wrp {
  padding: 0 15px 15px;
}

.mdl_prdct_name {
  margin-top: 230px;
  transform: translateX(30px);
  position: relative;
  z-index: 1;
}

.mdl_pr_images {
  position: absolute;
  top: 0;
  bottom: 0;
  background: var(--vivid_yellow);
  left: 0;
  width: 90px;
  border-radius: 5px 0 0 5px;
}

.mdl_pr_images ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
}

.map_images_listings ul li {
  position: absolute;
  cursor: pointer;
}

.map_images_listings ul li::after {
  content: '';
  position: absolute;
  background: url(../images/location_vector.webp) no-repeat center;
  width: 41px;
  height: 67px;
  left: 0;
  top: -11px;
  scale: 0.35;
}

.map_images_listings {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.map_images_listings ul li img {
  opacity: 0;
  visibility: hidden;
  width: 70px;
  height: 45px;
  background: var(--white_color);
  padding: 5px;
  border-radius: 4px;
  box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.25);
  top: 52px;
  display: inline-block;
  position: relative;
  left: -15px;
  transition: var(--transition);
  z-index: 1;
}

.india_flag {
  right: 23%;
  bottom: 61%;
}

.japan_flag {
  right: 5%;
  top: 39%;
}

.us_flag {
  left: 20%;
  top: 20%;
}

.canada_flag {
  left: 16%;
  top: 10%;
}

.spain_flag {
  right: 49%;
  top: 23%;
}

.ireland_flag {
  right: 49%;
  top: 13%;
}

.uk_flag {
  right: 53%;
  top: 6%;
}

.africa_flag {
  left: 52%;
  bottom: 49%;
}

.portugal_flag {
  right: 53%;
  top: 17%;
  z-index: 1;
}

.thailand_flag {
  right: 15%;
  bottom: 54%;
}

.sweden_flag {
  top: 5%;
  left: 50%;
}

.finland_flag {
  top: 5%;
  left: 56%;
}

.map_images_listings ul li.active img {
  opacity: 1;
  visibility: visible;
}

.map_country {
  display: inline-block;
  cursor: pointer;
  transition: var(--transition);
}

.map_countryname ul {
  column-count: 2;
  column-gap: 10px;
  display: block;

}

.map_countryname ul li:has(.map_country.active) {
  background: var(--vivid_yellow);
}

.map_countryname ul li:has(.map_country.active)::after {
  background: var(--heading_color);
  transition: var(--transition);
}

.map_images_listings ul li h6 {
  display: none;
}

.home_poster_image .for_mobile {
  display: none;
}

.home_trade_row {
  background: var(--acent_color);
  padding: 20px 10px;
}

.home_fair_contents h3 {
  font-size: 32px;
  line-height: 40px;
  max-width: 590px;
  margin-bottom: 20px;
}

.home_fair_contents .hammer_tag {
  margin-bottom: 20px;
}

.home_fair_contents .listing_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home_fair_contents .listing_wrap ul {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.home_fair_contents .listing_wrap ul li {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  column-gap: 14px;
}

.home_fair_contents .listing_wrap ul li img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.fair_image {
  height: 240px;
}

.home_products .accessories_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 25px;
}

.home_products .accessories_info .image {
  width: 100%;
}

.home_products .accessories_info .images_wrap {
  width: 100%;
  height: 520px;
}

.home_products .accessories_tag {
  width: auto;
  margin-bottom: 25px;
}

.home_products .accessories_tag h4 {
  font-size: 24px;
}

.iso_imglisting li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.iso_imglisting li {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 10px;
  background: var(--white_color);
  border-radius: 4px;
}

.iso_imglisting .slick-track {
  display: flex;
  align-items: center;
  gap: 35px;
}

/* Home Page End */

/* About Page Start */

.member_details .image {
  height: 550px;
}

.about_memeber .row:has(.member_details) {
  row-gap: 25px;
}

.about_vinitgloves .philosophy_heading_wrap .global_heading {
  max-width: 600px;
}

.about_vinitgloves .philosophy_heading_wrap .contents {
  width: 33%;
}

.our_mission_slider_wrpr .slider_item {
  padding: 0 5px;
}

.inner_banner_wrap {
  position: relative;
  bottom: 0;
  display: block;
  border-bottom: 1px solid #fff;
  padding-bottom: 30px;
}

.inner_banner {
  padding: 430px 0 50px;
}

.inner_background {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.inner_background img {
  border-radius: 0;
}

.inner_banner::after {
  content: '';
  position: absolute;
  background: rgb(0, 0, 0, 0.5);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.inner_banner_wrap h1 {
  font-size: 72px;
  line-height: 86px;
}

.inner_breadcrumb a {
  color: var(--white_color);
  line-height: 24px;
}

.inner_breadcrumb a:hover {
  color: var(--vivid_yellow);
}

.inner_breadcrumb ul {
  display: flex;
  align-items: center;
}

.inner_breadcrumb ul li {
  margin-right: 75px;
}

.inner_breadcrumb li {
  position: relative;
  padding-left: 25px;
}

.inner_breadcrumb li::after {
  border-radius: 2px;
  background: var(--white_color);
  width: 16px;
  height: 16px;
  left: 0;
  top: 6px;
  position: absolute;
  content: '';
}

.inner_breadcrumb li::before {
  content: '';
  position: absolute;
  background: url(../images/right_arrow.webp) no-repeat right;
  width: 31px;
  height: 31px;
  right: -50px;
  top: 0px;
}

.inner_breadcrumb li:last-child::before {
  display: none;
}

.inner_breadcrumb li:last-child {
  pointer-events: none;
  margin: 0;
}

.inner_breadcrumb ul {
  margin-top: 20px;
  flex-wrap: wrap;
}

.navitem.active .navlink {
  color: var(--vivid_yellow);
}

.navitem.active .navlink::after {
  position: absolute;
  content: '';
  background: var(--vivid_yellow);
  bottom: -5px;
  left: unset;
  right: 0;
  width: 100%;
  height: 1px;
  transition: var(--transition);
}

.about_vinitgloves .about_section_left .global_heading h2 {
  max-width: 600px;
}

.about_vinitgloves .about_section_left {
  padding-right: 0;
}

.about_milestones {
  padding: 20px;
  background: var(--acent_color);
  border-radius: 4px;
}

.about_milestones .icon {
  width: 86px;
  height: 86px;
  background: var(--vivid_yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-bottom: 25px;
}

.about_milestones .global_heading h2 {
  font-size: 40px;
  line-height: 60px;
}

.about_milestones .global_heading {
  margin-bottom: 10px;
}

.year h3 {
  color: var(--black_color);
  font-size: 40px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 15px;
}

.milestones_slider_group .slider_content .row {
  align-items: center;
}

.milestones_slider_group .year p {
  font-size: 16px;
  line-height: 24px;
}

.milestones_slider_group .image {
  height: 250px;
}

.milestones_slider_group {
  margin-top: 65px;
  position: relative;
}

.miles_slider_item {
  padding: 0 10px;
}


.milestones_slider_group .csr_arrows_wrp button {
  width: 50px;
  height: 40px;
}

.milestones_slider_group .csr_arrows_wrp {
  position: absolute;
  left: unset;
  right: 0;
  top: -50px;
  bottom: unset;
  z-index: 1;
}

.milestones_slider_group .slick-next {
  right: -54px;
  width: 50px;
  height: 50px;
  border: 1px solid var(--heading_color);
  border-radius: 10px;
}


.building_img {
  height: 605px;
}

.philosophy_heading_wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.philosophy_heading_wrap .global_heading {
  max-width: 500px;
}

.philosophy_heading_wrap .contents {
  width: 30%;
  flex: 0 0 auto;
}

.philosophy_tabs_group {
  border-radius: 4px;
  background: var(--acent_color);
  padding: 40px;
  z-index: 1;
  position: relative;
  margin-right: -20px;
}

.philosophy_tabs_group button {
  color: var(--heading_color);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0;
  border: none !important;
  transition: var(--transition);
  padding: 10px 0;
}

.philosophy_tabs_group .nav {
  justify-content: space-between;
  border: none;
  padding-top: 20px;
  border-top: 1px solid var(--border_color);
}

.philosophy_tabs_group .nav-tabs .nav-item.show .nav-link,
.philosophy_tabs_group .nav-tabs .nav-link.active {
  border: none;
  background: transparent;
  transition: var(--transition);
}

.philosophy_tabs_group .nav-tabs .nav-link:hover {
  border: none;
  color: var(--heading_color);
}

.philosophy_tabs_group .tab-content {
  margin-top: 50px;
}

.philosophy_tabs_group .image {
  height: 160px;
}

.philosophy_tabs_group li {
  position: relative;
  transition: var(--transition);
}

.philosophy_tabs_group li:has(.nav-link.active)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -25px;
  height: 9px;
  background: var(--vivid_yellow);
  transition: var(--transition);
}

.philosophy_image {
  margin-left: -140px;
  height: 600px;
}

.our_mission_slider_wrpr .slider_content .image {
  height: 480px;
}

.our_mission_slider_wrpr .contents h3 {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border_color);
  margin-bottom: 20px;
}

.our_mission_slider_wrpr .contents {
  padding-left: 30px;
  padding-top: 50px;
}

.about_our_mission_slider {
  position: relative;
}

.about_our_mission_slider .csr_arrows_wrp {
  z-index: 1;
  left: 53%;
  right: unset;
  top: unset;
  bottom: -10px;
}

.about_our_mission .left_image {
  height: 420px;
}

.about_our_mission {
  background: var(--acent_color);
}

.about_infrastructure .philosophy_heading_wrap .contents {
  width: 40%;
}

.about_infra .numbers_card:nth-child(odd) {
  background: var(--vivid_yellow);
}

.about_infra .numbers_card:nth-child(even) {
  border: 1px solid var(--heading_color);
}

.about_infra.right .numbers_card:nth-child(odd) {
  border: 1px solid var(--heading_color);
  background: transparent;
}

.about_infra.right .numbers_card:nth-child(even) {
  background: var(--vivid_yellow);
  border: none;
}

.about_infra .numbers_card+.numbers_card {
  margin-top: 20px;
}

.about_infrastructure .philosophy_heading_wrap {
  margin-bottom: 50px;
}

.about_memeber .philosophy_heading_wrap .global_heading {
  max-width: 600px;
}

.member_details {
  position: relative;
}

.member_details:hover::after {
  opacity: 1;
}

.member_details:hover .name_details {
  opacity: 1;
  bottom: 25px;
}

.member_details::after {
  content: '';
  position: absolute;
  background: linear-gradient(180.00deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6) 100%);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: var(--transition);
  border-radius: 4px;
}

.name_details {
  position: relative;
  padding-top: 10px;
}

.name_details h3 {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--heading_color);
  margin-bottom: 15px;
}

.about_experience_wrap {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 40px;
}

.about_experience_wrap .global_heading h2 {
  font-size: 96px;
  line-height: 1;
}

.about_experience_wrap .global_heading {
  margin-bottom: 0;
}

.number_years h3 {
  font-size: 110px;
  line-height: 1;
  background: url(../images/manufacturing_unit_img.webp) no-repeat center;
  background-size: 100% 100%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  overflow: hidden;
}


.number_years h3 span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.number_years {
  border: 16px solid var(--acent_color);
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
  transition: var(--transition);
}

.number_years::after {
  content: '';
  position: absolute;
  left: -50px;
  top: -50px;
  width: 250px;
  height: 250px;
  border: 16px solid var(--vivid_yellow);
}

.about_memeber {
  background: var(--acent_color);
}

.about_experience {
  padding-top: 140px;
}

.about_experience.active_section .number_years {
  opacity: 1;
}

.footer__nav li.active a {
  color: var(--vivid_yellow);
}

.footer__nav ul li.active a::after {
  width: 100%;
  right: unset;
  left: 0;
}

/* About Page End */

/* CSR & Sustainability Start */
.green_operation .philosophy_heading_wrap .contents {
  width: 46%;
}

.video_card {
  height: 100%;
}

.green_operation_group .contents {
  background: var(--acent_color);
  padding: 30px;
  min-height: 560px;
  height: 100%;
}

.green_operation_group .icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.green_operation_group .contents h3 {
  line-height: 40px;
  margin-bottom: 20px;
}

.about_info {
  position: absolute;
  bottom: 20px;
  padding-left: 30px;
}

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

.green_operation_group>.row {
  height: 100%;
}

.sustainable_gloves h4 {
  font-size: 40px;
  font-weight: 400;
  color: var(--white_color);
  max-width: 300px;
  margin-bottom: 10px;
}

.sustainable_gloves p {
  color: var(--white_color);
}

.green_operation_group {
  height: 100%;
}

.harness_energy_image {
  height: 650px;
}

.harness_energy_image {
  position: relative;
}

.harness_energy_image li {
  border-radius: 4px;
  background: var(--heading_color);
  width: 350px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  padding: 20px;
  text-align: center;
}

.harness_energy_image li:first-child {
  top: 40px;
  left: 90%;
}

.harness_energy_image li:nth-child(2) {
  right: 90%;
  bottom: 40px;
  background: var(--vivid_yellow);
}

.harness_contents {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-left: 25px;
}

.harness_energy_image h4 {
  color: var(--white_color);
  font-size: 96px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 15px;
}

.harness_energy_image h6 {
  color: var(--white_color);
  font-family: var(--body_font);
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

.harness_energy_image li:nth-child(2) h4 {
  color: var(--heading_color);
}

.harness_energy_image li:nth-child(2) h6 {
  color: var(--heading_color);
}

.harness_contents .global_btn {
  width: max-content;
  margin-top: 20px;
}

.harness_energy_heading {
  padding-right: 25px;
}

.renewable_energy {
  background: var(--acent_color);
}

.value_action .philosophy_heading_wrap .global_heading {
  max-width: 740px;
}

.container-fluid {
  padding: 0;
}

.woman__action_image {
  height: 700px;
  min-height: 100%;
  width: 100%;
}

.value_action .row {
  row-gap: 15px;
}

.action_container {
  margin-top: 25px;
}

.woman_action_heading {
  height: 100%;
  background: var(--vivid_yellow);
  padding: 100px 60px;
}

.woman_action_heading h2 {
  max-width: 600px;
  margin-bottom: 25px;
}

.woman_action_heading p {
  color: var(--black_color);
}

.woman_action_heading .whitebtn {
  background: transparent;
  margin-top: 25px;
}

.woman_action_heading .whitebtn:hover {
  background: var(--black_color);
  border-color: transparent;
}

.action_container .row:nth-child(even) {
  flex-direction: row-reverse;
}

.action_container .row+.row {
  margin-top: 25px;
}

.values_grid_images ul {
  display: grid;
  grid-template-columns: 220px 220px 220px 420px;
  grid-template-rows: 230px 380px;
  gap: 20px;
  position: relative;
}

.values_grid_images ul li:nth-child(4) {
  grid-row: 1 / 3;
  grid-column: 4 / 5;
}

.values_grid_images ul li:nth-child(5) {
  grid-row: 2 / 3;
  grid-column: 2 / 4;
}

.empowering_values .paragraph {
  width: 790px;
}

.empowering_values {
  padding-right: 130px;
}

.empowering_values .global_btn {
  margin-top: 20px;
}

.partnership__section .philosophy_heading_wrap .contents {
  width: 50%;
}

.partnership__section .philosophy_heading_wrap .global_heading {
  max-width: 700px;
}

.partnership_card .image {
  height: 480px;
  margin-bottom: 20px;
}

.partnership_card h3 {
  margin-bottom: 10px;
}

.green_operation .container .row:has(.green_operation_group),
.partnership__section .container .row:has(.partnership_card) {
  row-gap: 20px;
}

.values_action,
.empowerment_values {
  overflow-x: hidden;
}

/* CSR & Sustainability End */

/* Products Page Start */
.filter_cross {
  display: none;
}

.accessories_section .row {
  row-gap: 20px;
}

.accessories_info {
  display: flex;
  column-gap: 10px;
  border: 1px solid var(--border_color);
  border-radius: 4px;
  padding: 10px;
  position: relative;
}

.accessories_tag {
  width: 150px;
  flex: 0 0 auto;
}

.accessories_tag h4 {
  color: var(--heading_color);
  font-family: var(--body_font);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 4px;
  background: var(--vivid_yellow);
  text-align: center;
  padding: 5px;
}

.accessories_info .image {
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.accessories_info .images_wrap {
  height: 320px;
  width: 100%;
}

.accessories_info .yellow_arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.accessories_info .yellow_arrow:hover {
  box-shadow: rgba(255, 255, 255, 0.45) 0px 0px 5px 2px;
}

.filter_tab_group .gloves_card .image {
  max-width: 300px;
  height: 300px;
  scale: 1.06;
}


.products_filter_dropdown li h4 {
  color: var(--para_color);
  font-size: 18px;
  line-height: 1;
  padding: 10px 40px;
  /* border-bottom: 1px solid var(--border_color); */
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  background: var(--acent_color);
}

.products_filter_dropdown li h4::before {
  content: '';
  position: absolute;
  background: url(../images/bottom_left_arrow.webp) no-repeat left;
  width: 32px;
  height: 32px;
  left: 5px;
  top: 3px;
  transition: var(--transition);
  filter: brightness(0) saturate(100%) invert(25%) sepia(8%) saturate(26%) hue-rotate(324deg) brightness(97%) contrast(91%);
}

.products_filter_dropdown li h4:hover {
  padding: 10px 45px;
}

.filter_dropdown_listing>ul>li+li {
  margin-top: 10px;
}


.sub_product_listing ul li+li {
  margin-top: 8px;
}

.product_filter_workman {
  margin-top: 30px;
  border-radius: 4px;
  background: var(--vivid_yellow);
  padding: 10px;
}

.product_filter_workman>a {
  width: 100%;
}

.product_filter_workman .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.product_filter_workman h6 {
  color: var(--heading_color);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.title img {
  transition: var(--transition);
}

.product_filter_workman:hover .title img {
  transform: rotate(30deg);
}

.products_filter_part {
  font-weight: 400;
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border_color);
  margin-bottom: 20px;
}

.product_contact_section .home_connect_forms {
  margin-left: 0px;
}

.products_contact {
  position: sticky;
  top: 80px;
}

.filter_tab_group .about_pr_imgs img {
  width: 40px;
  height: 50px;
  object-fit: contain;
}

.products_filter_dropdown {
  position: sticky;
  top: 110px;
}

.accessories_info img {
  transition: var(--transition);
}

.accessories_info .images_wrap:hover img {
  scale: 1.1;
}

.filter_dropdown_contents .row {
  row-gap: 25px;
}

.sub_product_listing li button {
  color: var(--para_color);
  font-size: 17px;
  text-transform: uppercase;
  font-family: var(--heading_font);
  padding: 3px 50px;
  border-radius: 4px;
  padding-right: 40px;
  position: relative;
  background: var(--acent_color);
  width: 100%;
  border: none;
  text-align: left;
  font-weight: 500;
}

.sub_product_listing li button:hover {
  padding: 3px 55px;
}

.sub_product_listing {
  padding: 10px 0;
}

.sub_product_listing button.active {
  background: var(--vivid_yellow);
  /* padding: 3px 45px; */
}

.sub_product_listing button::after {
  content: '\f057';
  position: absolute;
  font-family: "fontawesome";
  right: 6px;
  top: 3px;
  font-size: 24px;
  transition: var(--transition);
  opacity: 0;
}

.products_filter_dropdown li h4::after {
  content: '\f057';
  position: absolute;
  font-family: "fontawesome";
  right: 10px;
  top: 6px;
  font-size: 24px;
  transition: var(--transition);
  opacity: 0;
}

.products_filter_dropdown li h4.active::after {
  opacity: 1;
}

.sub_product_listing li button::before {
  content: '';
  position: absolute;
  background: url(../images/right_arrow.webp) no-repeat left;
  width: 31px;
  height: 31px;
  left: 13px;
  top: 3px;
  transition: var(--transition);
  filter: brightness(0) saturate(100%) invert(25%) sepia(8%) saturate(26%) hue-rotate(324deg) brightness(97%) contrast(91%);
}


.sub_product_listing button.active::after {
  opacity: 1;
}


.filter_dropdown_listing li.active h4 {
  background: var(--vivid_yellow);
  border-color: transparent;
  border-radius: 4px;
}

.filter_dropdown_listing li.active h4::after {
  transform: rotate(90deg);
}

.products_filter_dropdown li h4.active {
  background: var(--vivid_yellow);
}


/* Products Page End */

/* Products Details Start */
.pdetails_inner {
  height: 180px;
  padding: 0;
}

.pdetails_flex {
  display: flex;
}

.product_image {
  width: 100%;
  height: 770px;
  background: var(--acent_color);
}

.product_image img {
  border-radius: 4px;
}

.products_contents_group .inner_breadcrumb li::after {
  background: var(--vivid_yellow);
}

.products_contents_group .inner_breadcrumb li::before {
  filter: brightness(0) saturate(100%) invert(7%) sepia(8%) saturate(20%) hue-rotate(323deg) brightness(96%) contrast(88%);
}

.products_contents_group .inner_breadcrumb a {
  color: var(--heading_color);
  /* font-weight: 400; */
}

.products_contents_group .inner_breadcrumb li:last-child a {
  font-weight: 500;
}

.products_contents_group .inner_breadcrumb a:hover {
  color: var(--heading_color);
  opacity: 0.6;
}

.products_contents_group .inner_breadcrumb ul {
  margin-top: 0px;
  margin-bottom: 25px;
}

.products_contents_group h1 {
  color: var(--heading_color);
}

.products_contents_group .inner_banner_wrap {
  border: none;
  padding-bottom: 20px;
}

.products_contents_group .about_pr_imgs ul {
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  top: 0;
  right: 0;
  column-gap: 15px;
  /* border-bottom: 1px solid var(--heading_color); */
  /* padding-bottom: 20px; */
  margin-top: -20px;
  /* margin-bottom: 30px; */
}

.sku_category {
  border-top: 1px solid var(--heading_color);
  padding-top: 25px;
  margin-top: 25px;
}

.products_contents_group .check__listing {
  margin-bottom: 0;
}

.sku_category h4 {
  color: var(--para_color);
  font-size: 16px;
  font-weight: 500;
  min-width: 120px;
}

.sku_category h5 {
  font-size: 20px;
  color: var(--para_color);
  font-weight: 400;
}

.sku_category li {
  display: flex;
  align-items: center;
  column-gap: 35px;
}

.sku_category ul li+li {
  margin-top: 25px;
}

.products_contents_group {
  padding-left: 30px;
}

.pdetailstab .nav-pills .nav-link {
  color: var(--para_color);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  text-align: left;
  width: fit-content;
  transition: var(--transition);
}

.pdetailstab .nav-pills .nav-link.active,
.pdetailstab .nav-pills .show>.nav-link {
  color: var(--para_color);
  background: transparent;
  font-weight: 600;
  background: var(--vivid_yellow);

}

.pdetailstab .nav {
  width: 240px;
  flex: 0 0 auto;
  border-right: 1px solid var(--heading_color);
  margin-right: 60px;
  height: auto;
  padding-top: 20px;
}

.pdetailstab .nav button+button {
  margin-top: 40px;
}

.pdetailstab {
  margin-top: 80px;
}

.pdetailstab .tab-content {
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  /* text-transform: capitalize; */
}

.products_slider_group {
  position: relative;
}

.products_slider_wrap .gloves_card .image {
  max-width: 350px;
  height: 350px;
}

.products_slider_wrap .slider_item {
  padding: 0 10px;
}

.products_slider_group .about_pr_imgs img {
  width: 45px;
  height: 54px;
}

/* Products Details End */

/* Facility Start */
.vertical_advantage_row>*:nth-child(odd) .numbers_card {
  background: var(--vivid_yellow);
}

.vertical_advantage_row>*:nth-child(even) .numbers_card {
  border: 1px solid var(--heading_color);
}

.vertical_advantage_row {
  row-gap: 20px;
}

.leather_expertise__contents .image {
  width: 256px;
  height: 223px;
  margin-bottom: 20px;
}

.leather_expertise__contents .global_heading {
  margin-bottom: 30px;
}

.leather_expertise__contents .global_btn {
  margin-top: 15px;
}

.leather_right_image {
  height: 100%;
}

.leather_expertise {
  background: var(--acent_color);
}

.manufacturing_unit_card .image {
  height: 525px;
  margin-bottom: 25px;
}

.manufacturing_unit_card .global_heading {
  margin-bottom: 35px;
}

.machines_technology {
  background: var(--acent_color);
}

.machines_card .image {
  height: 270px;
  margin-bottom: 24px;
}

.machines_card h4 {
  text-align: center;
  color: var(--para_color);
  font-family: var(--body_font);
  font-size: 20px;
  font-weight: 400;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 48px;
}

.machines_card {
  border-top: 1px solid var(--border_color);
  border-bottom: 1px solid var(--border_color);
  padding: 20px 0;
}

.machines_technology .row:has(.machines_card) {
  row-gap: 40px;
}

.workspace_slider .slider_item {
  padding: 0 5px;
}

.tested_listing h3 {
  font-family: var(--body_font);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tested_listing ul li:not(:last-child) {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--heading_color);
}

.tested_listing ul li+li {
  margin-top: 30px;
}

.row>*:has(.tested_listing):first-child .tested_listing {
  padding-right: 60px;
}

.row>*:has(.tested_listing):last-child .tested_listing {
  padding-left: 60px;
}

.tested_lab_img {
  scale: 1.1;
}

.tested_lab_img img {
  border-radius: 0;
}

.together_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.together_wrap h2 {
  font-size: 200px;
  line-height: 1.2;
  transform: translateX(100%);
}

.workspace_section {
  overflow-x: hidden;
}

/* Facility End */

/* Gallery Start */
.awards_card .image {
  height: 360px;
  overflow: hidden;
}

.awards_card .image img {
  transition: var(--transition);
}

.awards_card h3 {
  position: relative;
  padding-right: 60px;
  margin-bottom: 30px;
}

.awards_card h3::after {
  content: '';
  position: absolute;
  background: url(../images/right_long_arrow.png) no-repeat right;
  width: 58px;
  height: 15px;
  right: 0;
  top: 24px;
}

.explore_gallery .row>*:has(.awards_card) {
  border-right: 1px solid var(--border_color);
  border-top: 1px solid var(--border_color);
  border-bottom: 1px solid var(--border_color);
  padding: 35px 30px 45px;
}

.explore_gallery .row>*:has(.awards_card):nth-child(4n) {
  border-right: none;
}

.explore_gallery .row>*:has(.awards_card):nth-child(n+5) {
  border-top: 0;
}

.explore_gallery .row>*:has(.awards_card):hover img {
  scale: 1.1;
}

.explore_gallery .hammer_tag {
  margin-bottom: 0;
}

.explore_gallery .blacktag::before {
  display: none;
}

.convocation__section {
  background: var(--acent_color);
  overflow-x: hidden;
}

.convocation_contents {
  padding: 55px;
  max-width: 1000px;
  margin-left: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.convocation_contents .global_btn {
  width: max-content;
}

.convo_left_image {
  height: 275px;
}

.convocation_contents .row {
  margin-top: 50px;
}

.activities_grid_wrap ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 85px 10px 80px 245px;
  gap: 35px;
}

.activities_grid_wrap ul li,
.activities_grid_wrap ul li a {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-bottom: 10px;
}

.activities_grid_wrap ul li a img {
  transition: var(--transition);
}

.activities_grid_wrap ul li a:hover img {
  scale: 1.1;
}

.activities_grid_wrap ul li:nth-child(1) {
  grid-row: 1/4;
  grid-column: 1/2;
}

.activities_grid_wrap ul li:nth-child(2) {
  grid-row: 1/5;
}

.activities_grid_wrap ul li:nth-child(3) {
  grid-row: 1/2;
}

.activities_grid_wrap ul li:nth-child(4) {
  grid-row: 1/3;
}

.activities_grid_wrap ul li:nth-child(5) {
  grid-row: 4/6;
}

.activities_grid_wrap ul li:nth-child(6) {
  grid-row: 5/6;
}

.activities_grid_wrap ul li:nth-child(7) {
  grid-row: 2/6;
}

.activities_grid_wrap ul li:nth-child(8) {
  grid-row: 3/6;
}

.activities_grid_wrap .global_btn {
  margin: auto;
  display: block;
  width: max-content;
  margin-top: 70px;
  font-weight: 500;
}

.convocation_big_image {
  height: 100%;
}

.products_filter_part i {
  display: none;
}

/* Gallery End */


/* Contact Us Start */

.contact_iframe {
  height: 100%;
}

.contact_page_links {
  background: var(--acent_color);
  width: 100%;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--para_color);
  font-size: 20px;
  /* text-transform: capitalize; */
  height: 100%;
  font-weight: 300;
  border-radius: 4px;
  text-align: center;
}

.contact_page_links:hover {
  background: var(--vivid_yellow);
}

.contact_page_links p {
  font-weight: 300;
}

.contact_page_links i {
  font-size: 30px;
  margin-bottom: 16px;
  color: var(--heading_color);
}

.row:has(.contact_page_links) {
  row-gap: 20px;
}

.contact_links_row {
  margin-top: 50px;
}

/* Contact Us End */


/* DEVELOPMENT CSS START */

.wpcf7-spinner {
  opacity: 1;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: -26px;
  left: 0;
  right: 0;
  margin: auto;
}

.wpcf7-not-valid-tip {
  font-size: 15px;
  font-family: var(--heading_font);
  font-weight: 500;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #dc3232;
  text-align: center;
  font-size: 15px;
  /* font-family: var(--heading_font); */
  color: #dc3232;
}

.inner_breadcrumb li {
  color: var(--white_color);
}

.products_contents_group .inner_breadcrumb li {
  color: var(--heading_color);
}

.banner__social_icons {
  right: 40px;
}

.about_section_left {
  position: sticky;
  top: 50px;
}

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

.yt_yhumb {
  flex-grow: 1;
}

.footer_btm_middle>ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  flex-direction: column;
  row-gap: 10px;
}

.footer_btm_left li.active a {
  color: var(--vivid_yellow);
}

.footer_btm_left>ul>li.active a::after {
  background: var(--vivid_yellow);
}

/* 404 */
.error-404 {
  padding: 200px 0px 0;
  text-align: center;
}

.error-404 h1 {
  font-size: 100px;
  font-weight: 400;
  line-height: 1;
}

/* 404 */

/* Pagination */
.filter_dropdown_contents .pagination .page-link {
  color: var(--para_color);
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--black_color);
  border-radius: 4px;
}

.filter_dropdown_contents .pagination {
  justify-content: center;
  margin-top: 30px;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.filter_dropdown_contents .active>.page-link,
.filter_dropdown_contents .page-link.active {
  color: var(--black_color);
  background-color: var(--vivid_yellow);
  border: none;
}

.pagination-nav button {
  font-size: 25px;
}

.pagination ul {
  display: flex;
  column-gap: 15px;
}

/* Pagination */

#clear_button {
  background: var(--vivid_yellow);
  border: none;
  border-radius: 4px;
  font-size: 17px;
  padding: 3px 15px;
  transition: var(--transition);
}

#clear_button:hover {
  background: var(--black_color);
  color: var(--white_color);
}

.default_content h2 {
  font-size: 35px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 5px;
}

.default_content h3 {
  margin-bottom: 10px;
}

.default_content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.default_content ul li {
  font-size: 18px;
}

.default_content ul {
  margin-bottom: 18px;
}

.default_content ul li+li {
  margin-top: 18px;
}

.error_section {
  background: var(--heading_color);
}

.no-prod {
  text-align: center;
  margin-top: 20px;
}

/* Wrapper in loading state */
.prod-loading {
  position: relative;
  pointer-events: none;
}


.prod-loading::after {
  content: "";
  width: 28px;
  height: 28px;
  border: 4px solid var(--vivid_yellow);
  border-top-color: var(--black_color);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Animation */
@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.prod-loading>* {
  opacity: 0.2;
}

.footer_btm_middle {
  text-align: center;
}

.footer_btm_middle li a,
.footer_btm_middle p {
  color: var(--white_color);
  font-weight: 300;
}

.footer_btm_middle p {
  margin-bottom: 0;
  margin-top: 6px;
}

.footer_btm_middle li a:hover {
  color: var(--vivid_yellow);
}

.wpcf7 form .wpcf7-response-output {
  margin: 10px 0.5em 5px;
}

.form_input:has(.wpcf7-not-valid-tip) input {
  border-color: #dc3232;
}

.wpcf7-not-valid-tip {
  font-size: 15px;
  font-family: var(--heading_font);
  font-weight: 500;
  display: none;
}

/* Map Extra Flags */
.Italy_flag {
  right: 46%;
  top: 22%;
}

.france_flag {
  right: 48%;
  top: 18%;
}

.greece_flag {
  right: 43%;
  top: 24%;
}

.australia_flag {
  right: 14%;
  bottom: 12%;
}

.chile_flag {
  left: 27%;
  bottom: 24%;
}

.paraguay_flag {
  left: 30%;
  bottom: 29%;
}

.mexico_flag {
  left: 18%;
  top: 32%;
}

.mauritius_flag {
  left: 64%;
  bottom: 40%;
}

.switzerland_flag {
  right: 50%;
  top: 19%;
}

.austria_flag {
  right: 49%;
  top: 19%;
}

.slovakia_flag {
  right: 45%;
  top: 19%;
}

.slovenia_flag {
  right: 48%;
  top: 23%;
}

.map_image img {
  transform: translateY(30px);
}

.map_image {
  display: none;
}

#map_country {
  width: 1200px;
  height: 800px;
  transform: scale(1.2);
  margin-top: -100px;
}

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


/* Map Extra Flags */

a:has(.fa-envelope) {
  text-transform: lowercase;
}

.tested_rigour .philosophy_heading_wrap .contents {
  width: 45%;
}

.manufacturing_unit .iso_imglisting li {
  box-shadow: rgba(17, 12, 46, 0.15) 0px 0px 7px 1px;
}

.manufacturing_unit .iso_imglisting .slick-track {
  padding: 15px 0;
}

.footer_btm_middle li a {
  position: relative;
}

.footer_btm_middle li.active a {
  color: var(--vivid_yellow);
}

.footer_btm_middle li.active a:before {
  position: absolute;
  content: '';
  background: var(--vivid_yellow);
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  transition: var(--transition);
}

.member_details::after {
  display: none;
}


/* Back to Top */

.to_top {
  width: 50px;
  height: 50px;
  background: var(--vivid_yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black_color);
  border-radius: 50%;
  font-size: 25px;
  position: fixed;
  right: 10px;
  bottom: 100px;
  opacity: 0;
  visibility: hidden;
  z-index: 4;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}


.to_top.visible {
  opacity: 1;
  visibility: visible;
}

.to_top:hover {
  opacity: 0.7;
}
/* Back to Top */

.activities_grid_wrap .global_btn::after{
    right: 25px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
}

.grecaptcha-badge{
    z-index: 1;
}

.sticky_enquiry .global_btn {
    position: fixed;
    top: 46%;
    right: -115px;
    z-index: 1;
    transform: rotate(-90deg) translateY(-50%);
    padding: 11px 18px;
}

.sticky_enquiry .global_btn::after {
    display: none;
}

/* DEVELOPMENT CSS END */