/*Common css*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --blue: #3B42F8;
  --custom-white: #f8f8ff;
  --custom-black: #111111;
  --white: #fff;
  --black: #000;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: var(--light-black);
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--custom-white);
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--black);
}

img {
  width: 100%;
}

a {
  color: var(--blue);
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  text-decoration: none;
  color: var(--custom-black)
}

h3,
h4,
h5,
h6 {
  font-weight: 400;
}

h1 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2em;
}

h2 {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2em;
}

h3 {
  font-size: 1.3em;
}

h6 {
  font-size: 1.1em;
  line-height: 1.5em;
  font-weight: 300;
}

p {
  font-size: 0.9rem;
  line-height: 1.5em;
}

.container {
  max-width: 1300px !important;
}

/* Buttons */
.linkBtn {
  border: 1px solid var(--custom-black);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  font-size: .8em;
  line-height: 1em;
  color: var(--custom-black);
  padding: 1em 1.5em;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.linkBtn:hover {
  background-color: var(--blue);
  color: #f8f8ff;
  border: 1px solid var(--blue);
}

.linkBtn.active {
  background-color: var(--blue);
  color: #f8f8ff;
  border: 1px solid var(--blue);
}

/* Common Classes */
.banner img {
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}
.image-wrapper {
	/* height: 80vh;
	overflow: clip; */
	border-radius: 40px;
}
.image-wrapper video {
	width: 100%;
	height: auto;
	border-radius: 40px;
}

.wrapper {
  max-width: 86.4%;
  margin: 0 auto;
}

.p-top {
  padding-top: 4em;
}

.p-bottom {
  padding-bottom: 1em;
}
.grey-bg{
  background-color: #eee;
}

/* Breadcrumbs */
.breadcrumb {
  margin-top: 3em;

}

.breadcrumb-item {
  font-size: 1em;
  text-transform: capitalize;
}

.breadcrumb-item a,
.breadcrumb-item li {
  font-size: 1em;
  line-height: 1.3em;
  color: var(--custom-black) !important;
  text-decoration: none;
  font-weight: 300;
  text-transform: capitalize;
}


.breadcrumb-item.active,
.breadcrumb-item.active a {
  color: var(--custom-black) !important;
  font-weight: 500;
}

/* SLider */
.swiper-button-next:after {
  content: "\f061" !important;
}

.swiper-button-prev:after {
  content: "\f060" !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 800;
  color: #111111;
  font-size: initial !important;
}

.swiper-button-next,
.swiper-button-prev {
  width: 21px !important;
  height: 21px !important;
  border-radius: 50%;
  border: 1px solid #000;
  cursor: pointer;
  transition: all 0.03s linear;
  -webkit-transition: all 0.03s linear;
  -moz-transition: all 0.03s linear;
  -ms-transition: all 0.03s linear;
  -o-transition: all 0.03s linear;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  border: 2px solid var(--blue);
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: var(--blue);
}

.swiper-button-next {
  right: 0px !important;
  top: 0px !important;
}

.swiper-button-prev {
  right: 40px !important;
  top: 0px !important;
  left: initial !important;
}

/* Tabs */
.tabBtn {
  font-weight: 300;
  font-size: .9em;
  line-height: 1em;
  padding: 1em 1em;
  background-color: #fff;
  border-radius: 40px;
  color: #111111;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  display: block;
  cursor: pointer;
}

.tabSection {
  margin: 40px 0;
}

.tabBtn.selected {
  background-color: var(--blue) !important;
  color: #ffffff;
}

.tabBtn:hover {
  background-color: #eee;
}

.tabSection ul {
  gap: 1em;
}

.tabSection ul li {
  text-align: center;
  width: 100%;
  max-width: 20%;

}

/* Hide scrollbar for Chrome, Safari and Opera */
.overflow-x-scroll::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.overflow-x-scroll {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* Header */
header {
  position: sticky;
  top: 0;
  transition: 0.5s all ease-in-out;
  z-index: 99;
  background-color: #f8f8ff;
}

header.sticky {
  padding: 0.5em 0em !important;
  transition: 0.5s all ease-in-out;
}

header.sticky .logo img {
  width: 120px !important;
  transition: 0.5s all ease-in-out;
}

.flagIcon,
.toggleIcon {
  width: 40px !important;
}

#menu {
  width: 300px;
  right: 0;
  padding-top: 80px;
  z-index: 100;
  position: fixed;
  top: 0;
  background: var(--custom-white);
  bottom: 0;
  transform: translateX(300px);
  transition: all 0.3s linear;
}

.logo img {
  display: block;
  width: 180px !important;
  margin-left: 20px;
  transition: 0.5s all ease-in-out;
}

.logoImg img {
  width: 200px;
  transition: 0.5s all ease-in-out;
  padding: 0em 1em;
}

.nav-inner {
  margin-top: 80px;
  padding-left: 0;
}

.nav-list {
  margin-bottom: 38px;
  list-style: none;
  padding: 0 !important;
}

.nav-link-btn {
  display: block;
  margin: 0;
  padding: 7px 20px 7px 20px;
  font-size: 16px;
  line-height: 20px;
  color: #727272;
  background-color: transparent;
  transition: all 0.2s linear;
}

#nav-close {
  position: fixed;
  top: 40px;
  right: 50px;
  cursor: pointer;
}

.nav-link-btn:hover {
  background-color: #7574741c;
}

.show {
  transform: translateX(0) !important;
  transition: all 0.2s linear;
}

.toggleIcon {
  cursor: pointer !important;
}

#menu {
  height: 100vh;
  overflow-y: scroll;
}

ul.mobileMenu {
  list-style: none;
  padding-left: 10px;
  display: none;
}

ul.mobileMenu li>a {
  line-height: 2;
  padding: 2px 15px 0px 40px;
  display: block;
  color: #000;
  border-bottom: 1px solid #fbfbfb;
}

nav#menu ul>li>a>i {
  float: right;
}


/* Footer */
footer.footer {
  background-color: #ffffff;
}

.footer_top {
  padding: 20px 20px;
  border-bottom: 1px solid #111111;
}

section.contact_sec {
  background-color: #3b42f8;
  padding: 20px 0px;
}

.contact_title {
  font-size: 1.6em;
  line-height: 1.4em;
  font-weight: 400;
  color: #ffffff;
}

.cont-btn {
  background: var(--custom-white);
  border-radius: 40px;
  padding: 0.8em 2em;
  font-weight: 300;
  font-size: 1em;
  line-height: 48px;
  text-align: center;
  text-transform: capitalize;
  color: var(--custom-black);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.cont-btn:hover {
  color: #fff;
  background-color: var(--custom-black);
}

.footer_link {
  text-decoration: none;
  color: #111111;
  font-size: 1em;
  line-height: 1.1em;
  font-weight: 300;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.footer_link.selected {
  color: #000000;
}

.footer_link:hover {
  color: #000000;
}

.f_comman_content .product_link {
  display: block;
  color: #111111;
  font-size: 1em;
  line-height: 1.1em;
  font-weight: 300;
  padding-bottom: 1em;
  text-decoration: none;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.f_comman_content .product_link:hover {
  color: var(--blue);
}

.f_comman_title {
  font-size: 1.1em;
  line-height: 1em;
  font-weight: 700;
  color: var(--custom-black);
  margin-bottom: .5em;
}

.footer_logo {
  margin-bottom: 39px;
  width: 200px;
}

.f_det_cont {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.f_det_cont .f_det_icon {
  width: 17px;
}

.f_det_cont .f_det_txt {
  font-size: 20px;
  line-height: 27px;
  font-weight: 300;
  color: #111111;
}

.footer_main {
  padding: 30px 0px 10px;
}

.footer_bottom {
  background-color: #111111;
  padding: 18px;
  color: #fff;
}

.footer_bottom p {
  margin-bottom: 0em;
}

.copy_right {
  margin-bottom: 0px;
  font-weight: 300;
  font-size: 22px;
  line-height: 33px;
  text-align: right;
  color: #ffffff;
}

.social_icons {
  display: flex;
  align-items: center;
  gap: 22px;
}




/* HOME CSS*/

.titleBox {
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: 6.9%;
}

.titleBox h1 {
  font-weight: 400;
  font-size: 3em;
  color: #ffffff;
  line-height: 1.2em;
  margin-bottom: 0;
}

.titleBox h3 {
  font-weight: 300;
  font-size: 30px;
  color: #ffffff;
  line-height: 45px;
  margin-bottom: 0;
}

/* about us */
.aboutUs {
	padding: 4em 0em 4em;
}

.aboutUs h6 .paraPri {
  font-size: 1em;
}

/* Home Product Slider */
.swiper {
  overflow-x: clip;
  overflow-y: visible;
  padding: 2em 0.5em 0em;
}

.home-product-slider .exBox {
  cursor: pointer;
  min-height: 18em;
}

.home-product-slider .exBox p {
  margin-bottom: 0em;
}

.exBox {
  padding: 2em 1.5em;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border: 1px solid #111111;
  transition: all 0.03s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.exBox:hover {
  background-color: var(--blue);
  border: 1px solid var(--blue);
}

.exBox.selected {
  background-color: var(--blue);
  border: 1px solid var(--blue);
}

.exBox.selected h3,
.exBox.selected p {
  color: #f8f8ff;
}

.exBox:hover h3,
.exBox:hover p {
  color: #f8f8ff;
}

.exBox h3 {
  font-weight: 400;
  font-size: 1.2em;
  line-height: 1.2em;
  color: var(--custom-black);
  text-align: left;
  transition: all 0.03s linear;
  -webkit-transition: all 0.03s linear;
  -moz-transition: all 0.03s linear;
  -ms-transition: all 0.03s linear;
  -o-transition: all 0.03s linear;
  text-transform: uppercase;
}

.exBox p {
  text-align: left;
  transition: all 0.03s linear;
  -webkit-transition: all 0.03s linear;
  -moz-transition: all 0.03s linear;
  -ms-transition: all 0.03s linear;
  -o-transition: all 0.03s linear;
}

.industry-presense {
  padding: 4em 0 0;
  /* width: 100%; */
  /* overflow-x: hidden; */
}

.industry-presense .swiper {
  /* position: initial; */
  padding: 3em 0em 6em;
}

.mySwiper2 .swiper-wrapper .swiper-slide:nth-child(2n) {
  margin-top: 80px;
}

.imgBox h4 {
  font-size: 1em;
  text-align: center;
  line-height: 1em;
  font-weight: 300;
}


/* Vision Mission */
.card {
  border-radius: 2em;
  border-width: 0px;
  padding: 2em 2em;
}

.vision .card {
  min-height: 45vh;
}

.svgBox {
  width: 110px;
  height: 110px;
  padding: 22px;
  background-color: var(--blue);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.vision .svgBox img {
  width: 60px;
  height: 60px;
}

.card:hover .svgBox {
  background-color: #000000;
}

.bnrBtn {
  background-color: #F8F8FF;
  border: none !important;
  right: 20px;
  bottom: 20px;
}


/* Affirm */
.affrimSection {
	padding: 4em 0em 2em;
}

/* Preformance image */
.performance {
  margin-top: 3em;
  margin-bottom: 5em;
}

.performance img {
  width: 60%;
}


/* Home Highlight */
.highlight {
  margin: 0em 3em;
  border: 1px solid #000;
  border-radius: 35px;
  background-color: #eee;
  padding: 3em 0em 5em;
}

.highlight-content .imgContent h2 {
  font-weight: 400;
  font-size: 1.7em;
  line-height: 1.5em;
  text-transform: capitalize;
}

.highlight-content .imgContent p {
  font-weight: 300;
  font-size: 1em !important;
  line-height: 1.5em !important;
}

.imgContent {
  gap: 10px;
}

.product-img-1.blog_img img {
  border-radius: 40px;
}

.scleImg img {
  border-radius: 30px;
}

/* Investor */
.investor {
	padding: 4em 0 .1em;
	position: relative;
}

.investor::before {
  content: "";
  position: absolute;
  left: 0;
  top: 200px;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  z-index: -1;
  background-image: url('https://crs.mjw.mybluehostin.me/ratnamani/uploads/backgroundImg.svg');
}

.tabSection .investor-pills ul li {
  max-width: none;
  flex: 1 0 20%;
}

.tabSection .investor-pills ul {
  overflow-x: scroll;
  -ms-overflow-style: none;
  padding-bottom: 1em !important;
}

/* width */
.tabSection .investor-pills ul::-webkit-scrollbar {
  height: 5px;
}

/* Track */
.tabSection .investor-pills ul::-webkit-scrollbar-track {
  background: #eee;
}

/* Handle */
.tabSection .investor-pills ul::-webkit-scrollbar-thumb {
  background: grey;
}

/* Handle on hover */
.tabSection .investor-pills ul::-webkit-scrollbar-thumb:hover {
  background: #3b42f8;
}



/* Presense Count */
.presence-count .card {
  padding: 2em 3em;
  /* min-height: 29vh; */
}


/* Home CSR */
.csr .imgText {
  bottom: 40px;
  left: 80px;
  font-size: 1em;
  color: #fff;
  width: 80%;
}

.csr .imgText h6 {
  font-size: 1em;
}

.home-csr .mySwiper3 .swiper-wrapper {
  margin-left: 7.1% !important;
}

.home-csr a .slideImg {
  border-radius: 30px !important;
  overflow: clip;
}

.csr h3 {
  color: var(--custom-white);
}

.home-csr p {
  width: 80%;
  color: var(--custom-white);
}

.csr .beforeImg2,
.home-csr .beforeImg2 img {
  border-radius: 40px;
  width: 100%;
}

.csr .beforeImg {
  position: relative;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

.csr .beforeImg .absImg {
  left: 50%;
  top: 50%;
  width: 70%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.csr .beforeImg::before {
  content: "";
  position: absolute;
  bottom: 0em;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgb(17,17,17); */
  background: linear-gradient(0deg, rgba(17, 17, 17, 1) 0%, rgba(17, 17, 17, 0) 77%);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  top: auto;
}

.csr .beforeImg2 {
  height: auto;
}

.csr.beforeImg2,
.csr .beforeImg2 img {
  border-radius: 40px;
}


/* ABOUT - COMPANY PROFILE */
.aboutUs-hero {
  padding: 3em 0em 6em;
}

.bw.w-100 img {
  padding-top: 6em;
}

/* ABOUT - MILESTONE */
.about-milestone+.bw {
  display: none;
}

.about-milestone-slider .cardBox {
  margin: 0;
  position: relative;
}

.about-milestone-slider .cardBox span {
  position: absolute;
  top: 83px;
  z-index: 100;
  color: #fff;
  font-weight: bold;
  font-size: 2.2em;
  left: 20px;
}

.about-milestone-slider .cardBox .face.face1 .content img {
  width: 100%;
  border-radius: 40px;
}

.about-milestone-slider .cardBox {
  position: relative;
  cursor: pointer;
  color: #fff;
}

.about-milestone-slider .cardBox .face {
  width: 300px;
  height: 247px;
  transition: 0.5s;
}

.about-milestone-slider .cardBox .face.face1 {
  position: relative;
  background: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transform: translateY(100px);
}

.about-milestone-slider .cardBox:hover .face.face1 {
  filter: grayscale(1);
}

.about-milestone-slider .face.face1 {
  filter: grayscale(0);
}

.about-milestone-slider .cardBox .face.face1 .content {
  transition: 0.5s;
}

.about-milestone-slider .cardBox:hover .face.face1 .content {
  opacity: 1;
}

.about-milestone-slider .cardBox .face.face1 .content img {
  width: 100%;
}

.about-milestone-slider .cardBox .face.face1 .content h3 {
  margin: 10px 0 0;
  padding: 0;
  color: #fff;
  text-align: center;
  font-size: 1.5em;
}

.about-milestone-slider .cardBox .face.face2 {
  position: relative;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3em 2em 0em;
  border-radius: 0px 0px 40px 40px;
  box-sizing: border-box;
  transform: translateY(-150px);
}

.about-milestone-slider .cardBox:hover .face.face2 {
  transform: translateY(-20px);
  margin-top: 9em;
}

.about-milestone-slider .cardBox .face.face2 .content p {
  color: #F5F5F5;
}

.about-milestone-slider .cardBox .face.face2 .content h5 {
  font-weight: 500;
  margin-bottom: .5em;
  color: #F5F5F5;
}

.about-milestone-slider .swiper-button-prev,
.about-milestone-slider .swiper-button-next {
  top: 3em !important;
}

/* ABOUT - INTEGRITY */
section.instesticon_sec {
  margin-top: 7em;
  padding-bottom: 0em;
}

.quality_icon_box {
  min-height: 19.5em;
  margin-bottom: 1.5em;
  position: relative;
  border: 0.3px solid rgba(17, 17, 17, 0.6);
  border-radius: 40px;
  padding: 2em 2em;
}

.quality_icon_box:hover .quality_icon_round {
  background-color: #ffffff;
}

.quality_icon_box:hover .quality_icon_round img {
  filter: invert(var(--value, 100%));
}

.quality_icon_box:hover {
  background-color: #3b42f8;
  color: #ffffff;
}

.quality_icon_round {
  width: 75px;
  height: 75px;
  border-radius: 100%;
  background-color: #111111;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease-in-out;
}

.quality_icon_round .quality_icon {
  padding: 1em 1em;
}

.quality_icon_box:hover .quality_icon_para {
  color: #ffffff;
}

.quality_icon_para {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  margin-bottom: 0px;
  color: #111111;
}

.hand-pic.bw.w-100 img {
  width: 50%;
  margin: 0px auto;
  display: block;
}

.bw.w-100.bulb img {
  width: 40%;
  margin: 0px auto;
  display: block;
}

/* ABOUT TEAM */
#team {
  width: 100%;
  margin: 0px auto;
}

#team .img-fluid {
  border-radius: 40px;
}

.primary-board-member .titleBox {
  width: 35%;
}

/* Team inner */
.leader-details-preview h5 {
  font-size: 1.5em;
}

.team-slider .swiper-button-prev,
.team-slider .swiper-button-next {
  top: -1em !important;
}

.team-slider img {
  width: 100%;
  margin-bottom: 1em;
  filter: grayscale(1);
  border-radius: 30px;
}

.team-slider h5 {
  font-size: 1.1em;
  padding: 0em 0.5em;
}

.team-slider p {
  padding: 0em 0.5em;
}

.board-member-details+.bw {
  display: none;
}

.image-blurred-edge img {
  max-width: 57%;
}

.image-blurred-edge {
  background: #000;
  min-height: 400px;
  border-radius: 40px;
  padding-right: 30px;
}

/* CSR ACTIVITY */
.csr-activity-main+.bw {
  display: none;
}

.csr-activity-items .imgText {
  bottom: 80px;
}

.csr-activity-items .imgText h2 {
  color: var(--custom-white);
}

.csr-activity-items.csr .beforeImg::before {
  bottom: 0em;
}

/* SINGLE CSR */
.csr-detail-contain+.bw {
  display: none;
}

.section2-esg .esg-img img {
  border-radius: 40px;
}

.nav1 .nav-link {
  font-weight: 300;
  font-size: 1.2em;
  line-height: 1em;
  padding: 1em 2em;
  background-color: #fff;
  border-radius: 40px;
  color: #111111;
  text-transform: uppercase;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  display: block;
  cursor: pointer;
}

.esg-information .s3-esg-img img {
  border-radius: 40px;
  overflow: clip;
}

.nav1 .nav-link.active,
.nav1 .show>.nav-link {
  background: #3B42F8 !important;
  font-weight: 300;
  font-size: 1.2em;
  line-height: 1em;
  padding: 1em 2em;
  background-color: #fff;
  border-radius: 40px;
  color: var(--custom-white);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  display: block;
  cursor: pointer;
}

.bg-img-esg img {
  position: absolute;
  width: 50%;
  right: 0;
  mix-blend-mode: multiply;
}

.esg-section {
  border: 0.3px solid rgba(17, 17, 17, 0.6);
  border-radius: 40px;
  padding: 2em 1em;
  height: 47vh;
  margin: 25px 15px;
}

.esg-section img {
  width: 75px;
  height: 75px;
  padding: 20px;
  margin-bottom: 1em;
  background-color: #111111;
  border-radius: 50%;
}

.esg-section p {
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
}


/* PRODUCTS */
.product-main+.bw {
  display: none;
}

.product-img img {
  width: 100%;
  border-radius: 20px;
}

.product-info {
  color: var(--black);
}

/* SINGLE PRODUCT */
.product-page-title .title {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
}

.product-detail-pro-image.section-pro-image img {
  width: 100%;
}

.product-detail-pro-image.section-pro-image .main-img4 {
  height: 50vh;
  overflow-y: clip;
  border-radius: 40px;
}

/* features */
.manufacturing-img {
  position: relative;
  max-height: 19em;
  overflow: hidden;
  border-radius: 40px;
}

.manufacturing-img img {
  width: auto;
  min-height: 31em;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  transition: .3s ease;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(59, 66, 248, 0) 0%, var(--custom-black) 109.75%);
  display: flex;
  align-items: end;
}

.manufacturing-img:hover .overlay {
  background: linear-gradient(180deg, rgba(59, 66, 248, 0) 0%, #3B42F8 109.75%);
  opacity: 1;
  transition: .3s ease;
}

.overlay .title {
  text-transform: uppercase;
  padding: 1em 3em 2em 1.5em;
  font-weight: 500;
  color: #FFFFFF;
}

/* other products */
.other-product-info img {
  max-width: 100%;
  border-radius: 30px;
}

.other-product-info .title {
  color: var(--custom-black);
}

/* PRODUCT FEATURE PAGE SINGLE */
.product-detail-banner img {
  border-radius: 40px;
}

.manu-feature .main-img {
  height: 50vh;
  overflow-y: hidden;
  border-radius: 40px;
}

.salient-features {
  padding: 1em 1.5em;
  margin: 0;
  font-weight: 500;
  height: 9em;
  color: #111111;
  border: 0.3px solid rgba(17, 17, 17, 0.6);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.salient-features p{
  margin: 0em;
}

.salient-features:hover {
  background-color: #3B42F8;
  color: white;
}

/* specifiations */
.specification-table {
	background-color: #767676;
	border-top-left-radius: 40px;
	border-top-right-radius: 40px;
	/* padding-bottom: 50px; */
	/* padding: 5px 40px 29px 40px; */
	padding: 0px 0px;
	overflow: clip;
}
.specification-table .contentBox {
	border-right: 1px solid #fff;
	padding: 0em 0em;
}

.specification-grade {
  background-color: #DCD6D6;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  padding: 20px 30px 20px 60px;
}

.specification-grade p {
  font-weight: 300;
  font-size: 1em;
  line-height: 1.5em;
  margin-bottom: 0;
  color: #000000;
}

.s-part1 {
  position: relative;
  padding: 0;
}

.s-part1 h2 {
	font-weight: 600;
	font-size: 1.3em;
	line-height: 1.7em;
	text-transform: uppercase;
	text-align: center;
	color: #FFFFFF;
	padding: 0.9em 0em 0.6em;
	background-color: #3B42F8;
}
.s-part1 h4 {
	font-weight: 600;
	font-size: 1em;
	line-height: 1.5em;
	text-align: center;
	color: #FFFFFF;
	padding: 1em 1em 0em;
}
.s-part1 h4 span {
  font-weight: 300;
  font-size: 22px;
  line-height: 33px;
  text-align: center;
  color: #FFFFFF;
}

.s-part1 p {
  text-align: center;
  font-weight: 300;
  font-size: 1em;
  line-height: 1.5em;
  text-align: center;
  color: #FFFFFF;
  padding: 1em 1em 0em;
}

.s-part1::after {
  border-right: 0px solid white;
  position: absolute;
  content: "";
  top: 2%;
  left: 0;
  right: -5%;
  bottom: 0;
  height: 273px;
}

/* application info */
.application-info {
	background-color: #3B42F8;
	color: #FFFFFF;
	padding: 2em 0em 1em;
}

.application-info span {
  font-weight: 700;
  color: #FFFFFF;
}

/* INVESTOR PAGE */

/* Dropdown */
.slide-title {
  color: #3B42F8;
  text-transform: unset;
  /* font-family: 'Exo'; */
  font-size: 1.3em;
  line-height: 30px;
  margin-bottom: 20px;
  position: relative;
  margin-top: 5px;
  z-index: -1;
}

.cd-faq-group>.accordion {
  margin-bottom: 3em;
}

.cd-faq-categories {
  padding: 0;
  /* border: 1px solid #bababa; */
}

.cd-faq-categories li {
  list-style-type: none;
}

.cd-faq-categories .selected {
  background: #3B42F8;
  color: #fff;
}

.cd-faq-categories a {
  position: relative;
  display: block;
  overflow: hidden;
  height: 50px;
  font-size: 0.9em;
  line-height: 50px;
  padding: 0 28px 0 16px;
  padding: 0 24px;
  -webkit-transition: background .2s, padding .2s;
  -moz-transition: background .2s, padding .2s;
  transition: background .2s, padding .2s;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333;
  border-radius: 30px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid #bababa;
  margin-bottom: .5em;
  text-overflow: ellipsis;
}

.cd-faq-categories a::before {
  display: block;
  top: 0;
  right: auto;
  left: 0;
  height: 100%;
  width: 4px;
  opacity: 0;
  -webkit-transition: opacity .2s;
  -moz-transition: opacity .2s;
  transition: opacity .2s;
}

.cd-faq-categories .selected::before {
  opacity: 1;
}

.cd-faq-categories a:hover {
  background-color: #3B42F8;
  color: white;
  box-shadow: 0 5px 2px rgba(0, 0, 0, .08);
}

.cd-faq-categories a.active {
  color: white;
  background-color: #3B42F8;
  box-shadow: 0 5px 2px rgba(0, 0, 0, .08);
}

.cd-faq-categories li {
  width: 100%;
  max-width: 100% !important;
  /* text-align: left !important; */
}

.cd-faq-group {
  display: none;
}

.cd-faq-group.show_tab {
  display: block;
}

.sidebar {
  position: sticky;
  top: 100px;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 2em;
  left: 0;
  margin-top: 0px;
  text-align: center;
  margin: 0em;
  background-color: #eee;
}

.dropdown-submenu .dropdown-menu:hover {
  color: #000;
}

.pdf-dropdown-list-sublist .dropdown-menu a:hover {
  color: var(--blue) !important;
}

.pdf-downloads {
  display: flex;
  /* flex-wrap: wrap; */
  list-style-type: none;
  gap: 1em;
  padding-left: 0;
  justify-content: right;
}

.accordion-body p a {
  display: inline-block !important;
}

.accordion-collapse {
  position: relative;
  z-index: 1;
}

.pdf-downloads>li {
  flex: 0 1 20%;
}

.pdf-dropdown-list>.dropdown-toggle {
  border: 1px solid #000;
  border-radius: 15px;
  width: 100%;
}

.pdf-dropdown-list .dropdown-menu.show {
  top: 2.7em !important;
  border-radius: 15px;
  border: 1px solid;
  height: auto;
  max-height: 17em;
  overflow-y: scroll;
}

.dropdown-menu .dropdown-submenu>a {
  width: 100%;
  display: block;
  text-align: center;
}

.dropdown-menu .dropdown-submenu>a:hover {
  background-color: var(--blue);
  color: #fff;
}

.govt .accordion-body a {
  font-weight: 400;
  padding: 0.4em 0em;
  display: block;
  color: #000;
}

.govt .accordion-body li li a:hover {
  color: var(--blue);
  color: #fff;
}

#investors_relations-tab h5 {
  font-size: 1.1em;
}

#investors_relations-tab .col-sm-6 h6 {
  font-size: 1.1em;
  color: var(--blue);
  margin-top: 1em;
}

#investors_relations-tab .contact-details>div {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: .5em;
  font-size: 0.9em;
}

#investors_relations-tab .contact-details>div i {
  position: absolute;
  top: 0.2em;
  left: 0em;
}

#investors_relations-tab h4 {
  margin-top: 3em;
  font-size: 1.1em;
  line-height: 1.5em;
  margin-bottom: 1.5em;
}

#investors_relations-tab .GeneratedTable {
  border: 1px solid #000;
}

#investors_relations-tab .GeneratedTable tbody,
#investors_relations-tab .GeneratedTable td,
#investors_relations-tab .GeneratedTable tfoot,
#investors_relations-tab .GeneratedTable th,
#investors_relations-tab .GeneratedTable thead,
#investors_relations-tab .GeneratedTable tr {
  border-color: inherit;
  border-style: solid;
  border-width: 1px;
  padding: 0.2em 1.1em;
}

.dropdown.pdf-dropdown-list {
  margin-top: 0.5em;
}

.pdf-dropdown-list-sublist_link .caret::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}

.accordion-body .tabBtn {
  padding: 0.7em 1em !important;
  background-color: #eee;
}

.accordion-body .tabBtn.selected {
  color: #eee !important;
}

.accordion-body_list li {
  margin-bottom: 10px;
}

.accordion-body_list li a {
  font-size: 1em;
  color: #000;
  font-weight: 400;
  display: block;
  padding: 0em !important;
}

.accordion-body_list li a:hover {
  color: var(--blue);
}

.accordion-body_table table {
  border: 1px solid #b3adad;
  border-collapse: collapse;
  padding: 5px;
  width: 100%;
}

.accordion-body_table table th {
  border: 1px solid #b3adad;
  padding: 5px;
  background: #cfe2ff;
  color: #313030;
  text-align: center;
}

.accordion-body_table table td {
  border: 1px solid #b3adad;
  text-align: center;
  padding: 5px;
  background: #ffffff;
  color: #313030;
}


.tabs_wrapper {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  background: transparent;
}

ul.tabs {
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 10;
  margin: 25px 0 0;
  padding: 0;
  width: 29%;
  min-width: 175px;
  list-style: none;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

ul.tabs li {
  width: 100%;
  max-width: 100% !important;
}

ul.tabs li a {
  overflow: hidden;
  height: 50px;
  font-size: 0.9em;
  line-height: 50px;
  padding: 0 28px 0 16px;
  padding: 0 24px;
  -webkit-transition: background .2s, padding .2s;
  -moz-transition: background .2s, padding .2s;
  transition: background .2s, padding .2s;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333;
  border-radius: 30px;
  font-weight: 600;
  display: block;
  white-space: nowrap;
  border: 1px solid #bababa;
  margin-bottom: .5em;
  text-overflow: ellipsis;
}

ul.tabs li a:hover {
  background-color: #3B42F8;
  color: white;
  box-shadow: 0 5px 2px rgba(0, 0, 0, .08);
}

ul.tabs li a.active {
  background-color: #3B42F8;
  color: white;
  box-shadow: 0 5px 2px rgba(0, 0, 0, .08);
}

.tab_container {
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 0;
  left: 0%;
  width: 70%;
  min-width: 10px;
  text-align: left;
  border-radius: 12px;

}

.tab_content {
  padding: 20px;
  height: 100%;
  display: none;
}

.tab_drawer_heading {
  display: none;
}

@media screen and (max-width: 781px) {
  ul.tabs {
    display: none;
  }

  .tab_container {
    display: block;
    margin: 0 auto;
    width: 100%;
    border-top: none;
    border-radius: 0;

  }

  .tab_drawer_heading {
    overflow: hidden;
    height: 50px;
    font-size: 0.9em;
    line-height: 50px;
    padding: 0 28px 0 16px;
    padding: 0 24px;
    -webkit-transition: background .2s, padding .2s;
    -moz-transition: background .2s, padding .2s;
    transition: background .2s, padding .2s;
    background-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333;
    border-radius: 30px;
    font-weight: 600;
    display: block;
    white-space: nowrap;
    border: 1px solid #bababa;
    margin-bottom: .5em;
    text-overflow: ellipsis;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
  }

  .tab_drawer_heading:hover {
    background-color: #3B42F8;
    color: white;
    box-shadow: 0 5px 2px rgba(0, 0, 0, .08);
  }

  .d_active {
    background-color: #3B42F8;
    color: white;
    box-shadow: 0 5px 2px rgba(0, 0, 0, .08);
  }
}




/* financials */
.tabSection .accordion-item {
  background: transparent;
}

.tabSection .accordion-item .accordion-button {
  background-color: transparent;
  color: var(--custom-black);
  box-shadow: none;
}

.tabSection .accordion-item #panelsStayOpen-collapseOne.show {
  padding-bottom: 1em;
}

.tabSection .accordion-item .dropdown-menu.show {
  top: 4em !important;
}

.tabSection .accordion-button::after,
.tabSection .accordion-button::before {
  position: relative;
  z-index: -1;
}

.downBox img {
  width: 30%;
}

.downBox {
  padding: 0.8em 1em;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #111111;
  transition: all 0.03s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  box-shadow: initial;
  min-width: 120px;
}

.downBox p {
  font-size: 0.8em;
  font-weight: 300;
  text-align: center;
  line-height: 1.5em;
  color: var(--custom-black);
  margin-bottom: 0;
}

.rowLine {
  display: flex;
  gap: 2em;
}

.accordion-body .rowLine {
  max-width: 20%;
  width: 20%;
}

.accordion-body .rowLine>a {
  max-width: 100%;
  width: 100%;
}

.inner-year-col {
  display: flex;
  gap: 0.5em
}

.dropBtn {
  border-radius: 30px;
  padding: 14px 20px;
  background-color: #fff;
  border: 1px solid #0000004e;
  transition: all 0.03s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.dropBtn:hover {
  background-color: #eee;
}

.downBox:hover {
  box-shadow: 2px 8px 15px 1px #00000014;
  border: 1px solid #fff;
  background: #fff;
}

/* HIGHLIGHTS */
.nav-pills {
  gap: 2em;
}

.nav-pills .nav-item .nav-link {
  font-weight: 300;
  font-size: 1em;
  line-height: 1em;
  padding: 1em 2em;
  background-color: #fff;
  border-radius: 40px;
  color: #111111;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  display: block;
  cursor: pointer;
}

.nav-pills .nav-item .nav-link.active {
  background-color: var(--blue) !important;
  color: #ffffff;
}

.highlight-event .product-info-1 {
  color: var(--custom-black);
  padding: 1em 0.5em;
}

/* HIGHTLIGHTS INNER PAGE */
.section-3-advertise .section3-add-img {
  border-radius: 40px;
  overflow: hidden;
}

/* LOCATE US */
.locate_box_1 {
  width: 100%;
  padding: 2em 1.5em;
  border: 1px solid #11111199;
  border-radius: 40px;
  min-height: 40vh;
  margin-bottom: 30px;
}

.locate_box_1:hover {
  color: white;
  background-color: #3B42F8;
}

.locate_box_1:hover img {
  filter: invert(1);
}

.locate_box_1 h2 {
  font-size: 1.6rem;
  line-height: 1.2em;
  margin-bottom: 1em;
}

.locate_box_1 p {
  display: flex;
  gap: 10px;
}

.locate_box_1 img {
  width: auto !important;
  height: 20px !important;
}

.locate_box_1 a {
  color: #000;
}

.locate_box_1:hover a {
  color: #fff;
}

.form-control {
  font-weight: 300;
  font-size: 22px;
  line-height: 33px;
  text-transform: lowercase;
  color: #111111;

}

#inquiry_form .myIn {
  padding: 1em 0px !important;
  font-size: 24px !important;
  border: none !important;
  background: transparent !important;
  border-bottom: 1px solid #3D3D3D !important;
  border-radius: 0 !important;
}
#inquiry_form .myIn:focus{
  box-shadow: none;
  border-bottom: 1px solid var(--blue) !important;
}

#inquiry_form .myIn::-webkit-input-placeholder { /* Edge */
  color: #111111;
  opacity: 0.8;
}

#inquiry_form .myIn:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #111111;
  opacity: 0.8;
}

#inquiry_form .myIn::placeholder {
  color: #111111;
  opacity: 0.8;
}

.myBtn {
  margin-top: 20px;
  background: #3B42F8 !important;
  border-radius: 70px !important;
  color: white !important;
  font-size: 1.1em !important;
  box-shadow: none !important;
  border: 1px solid #3B42F8 !important;
  padding: 1em 1.5em !important;
}

.success {
  color: green;
}

.danger {
  color: red;
}

#g-recaptcha-error span {
  font-size: 20px !important;
}

/* CAREER */

label.label input[type="file"] {
  position: absolute;
  top: -1000px;
}

.label {
  cursor: pointer;
  border: 1px solid #cccccc;
  border-radius: 40px;
  padding: 13px 21px;
  display: inline-block;
  background: #9fa1a0;
  opacity: 0.3;
  border-radius: 40px;
  font-weight: 300;
  font-size: 1em;
  line-height: 1em;
  text-transform: lowercase;
  color: #2D2D2D;
}

.vacancy .accordion-item {
  background: none !important;
  border-width: 0px 0px 1px 0px;
  box-shadow: none;
  padding: 0.5em 0em;
}

.vacancy .accordion-item .accordion-header button {
  background: none !important;
  border-width: 0px 0px 1px 0px;
  box-shadow: none;
}

.vacancy .accordion-item:focus {
  box-shadow: none;
}

.vacancy .accordion-item .accordion-header,
.vacancy .accordion-item .accordion-header button[data-bs-toggle="collapse"] {
  font-size: 1.1em;
}

.career-form .myIn {
  padding: 1em 0px 0em !important;
  font-size: 1.1em !important;
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  opacity: 0.3;
}

.career-form {
  width: 60%;
}

/* QUALITY CERFICATIONS */
.quality-certification-tab.tabSection ul li {
  width: auto;
  text-align: center;
  max-width: 33.3%;
}

.quality-certification-tab.tabSection ul li .tabBtn {
  font-size: 1em;
  padding: 1.2em 1em;
}

.iso_img_box_1 a {
	border: 1px solid #111111;
	border-radius: 30px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 13em;
	width: auto;
	padding: 1em 1em;
	gap: 5px;
	margin-bottom: 1.5em;
}


.iso_img_box_1_img img {
  width: 80px;
}

.iso_img_box_1_text p {
	font-size: 0.85em;
	font-weight: 300;
	color: #000;
}

/* QUALITY ASSURANCE */
.quality_para {
  font-size: 1em;
  line-height: 1.5em;
  font-weight: 300;
  margin-bottom: 27px;
  color: #111111;
}

.quality_title1 {
  font-size: 1.4em;
  line-height: 1.3em;
  font-weight: 700;
  color: #111111;
  margin-bottom: 1em;
}

.quality_titlemain {
  color: #000000;
  font-size: 1.6em;
  line-height: 1em;
  font-weight: 400;
  margin-bottom: 1em;
}

.ins_test_parab {
  font-size: 1.2em;
  line-height: 1.5em;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1em;
}

.ins_test_paral {
  font-size: 1em;
  line-height: 1.5em;
  font-weight: 300;
  color: #000000;
  margin-bottom: 70px;
}

.quality_icon_box_1 {
  border: 0.3px solid rgba(17, 17, 17, 0.6);
  border-radius: 40px;
  padding: 2em 2em;
  min-height: 300px;
}

.quality_icon_round_1 {
  width: 75px;
  height: 75px;
  border-radius: 100%;
  background-color: #111111;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.quality_icon_round_1 img.img-fluid.quality_icon {
  width: 50%;
}

.quality_icon_box_1 {
  border: 0.3px solid rgba(17, 17, 17, 0.6);
  border-radius: 40px;
  padding: 2em 1.5em;
  min-height: 17em;
  margin-bottom: 1.5em;
}

.quality-assurange+.bw {
  display: none;
}

.qualityimg_sec h1 {
  color: #3B42F8;
}

/* SUBSIDARIES */
.tblogo {
  width: 10%;
}

/* SITEMAP */

.widget h4 {
  margin-bottom: 12px;
  border-bottom: 1px solid #d4d4d4;
  line-height: 30px;
  padding-bottom: 11px;
  color: #333;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
}

.widget h4:before {
  background: #054da0;
  margin-top: 39px;
  content: "";
  height: 4px;
  position: absolute;
  width: 50px;
}

.content a {
  color: #333;
  padding-bottom: 0;
  border-bottom: 0;
  transition: none;
}

.site-map-section ul.list-type {

  padding-left: 15px;
}

.site-map-section ul>li {
  line-height: 3;
  padding-left: 0;
}

/* DISCLOSERS */
#disclosers-table .btn.btn-info {
  background-color: transparent;
  border: 0px;
  color: #3b42f8;
  font-weight: 600;
  font-size: 1em;
}

#disclosers-table .btn.btn-info:hover {
  text-decoration: underline;
}

#disclosers-table td {
  border: 1px solid #cecece;
}

#disclosers-table p {
  margin: 0em;
}


/* RESPONSIVE CSS */

@media only screen and (min-width: 1600px) and (max-width: 2100px) {

  /* Home Page */

  .vision .card {
    min-height: 33vh;
  }

  .home-csr .beforeImg::before {
    bottom: 0;
  }

  .home-csr .imgText {
    bottom: 6em;
    left: 80px;
  }

  .presence-count .card {
    padding: 2em 3em;

  }

  .home-product-slider .exBox {
    min-height: 14em;
  }

  /* Locate us */
  .locate_box_1 {
    height: 40vh;
  }

  /* csr activity */
  .csr .beforeImg2 {
    height: auto;
  }

}

@media (min-width: 1350px) {}

@media only screen and (min-width: 1200px) and (max-width: 1350px) {

  /* Typography  */
  h1 {
    font-size: 1.3rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.9rem;
  }

  h6 {
    font-size: 1em;
  }

  h3 {
    font-size: 1.1rem;
  }

  h5 {
    font-size: 1.05rem;
  }

  /* Common CSS */
  .breadcrumb-item {
    font-size: 1em;
  }

  .linkBtn {
    font-size: 0.9em;
  }

  .nav-link-btn {
    font-size: 1em;
    line-height: 1.2em;
  }

  ul.mobileMenu li>a {
    font-size: 0.8em;
  }

  /* Footer */
  .contact_title {
    font-size: 1.3em;
  }

  .footer_link {
    font-size: 1em;
  }

  .f_comman_title {
    font-size: 1em;
  }

  /* Home */
  .titleBox h1 {
    font-size: 2.3em;
  }

  .titleBox h3 {
    font-size: 1.5em;
    line-height: 1.2em;
  }

  .exBox h3 {
    font-size: 1em;
  }

  .home-product-slider .exBox {
    min-height: 17em;
  }

  .imgBox h4 {
    font-size: 1.1em;
    line-height: 1em;
  }

  .highlight-content .imgContent h2 {
    font-size: 1.4em;
  }

  .highlight-content .imgContent p {
    font-size: 0.9em !important;
  }

  .presence-count .card {
    min-height: 21vh;
  }

  /* About us */
  .tabBtn {
    font-size: 1em;
  }

  .quality_icon_box {
    min-height: 20em;
  }

  /* Product page */
  .s-part1 h2 {
    font-size: 1.4em;
  }

  .s-part1 h4 {
    font-size: 1.1em;
  }

  .specification-grade p {
    font-size: 1em;
  }

  /* Csr activity */
  .nav1 .nav-link {
    font-size: 1em;
  }

  /* Investor */
  .downBox p {
    font-size: 0.9em;
  }


  /* Quality Certification */
  .iso_img_box_1_text p {
    font-size: 1.1em;
  }

  .quality-certification-tab.tabSection ul li .tabBtn {
    font-size: 1em;
  }

  /* Quality Assurance */
  .quality_para {
    font-size: 1.1em;
  }

  .quality_title1 {
    font-size: 1.4em;
  }

  .quality_titlemain {
    font-size: 1.7em;
  }

  .ins_test_parab {
    font-size: 1em;
  }

  .ins_test_paral {
    font-size: 1.1em;
  }

  .quality_icon_box_1 {
    min-height: 16em;
  }

  .quality_icon_round_1 {
    margin-bottom: 20px;
  }

  /* Highlights */
  .nav-pills .nav-item .nav-link {
    font-size: 1em;
  }

  /* Career */
  .vacancy .accordion-item .accordion-header,
  .vacancy .accordion-item .accordion-header button[data-bs-toggle="collapse"] {
    font-size: 1em;
  }

  .career-form .myIn {
    font-size: 1em !important;
  }


  /* Locate Us */
  .locate_box_1 h2 {
    font-size: 1.3rem;
  }

  .locate_box_1 {
    min-height: 50vh;
  }

  .myBtn {
    font-size: 1em !important;
  }

  #inquiry_form .myIn {
    font-size: 0.9em !important;
  }

}

@media (min-width: 1200px) {}

@media only screen and (min-width: 768px) and (max-width: 1023px) {

  /* home */
  .home-product-slider .wrapper.position-relative .h2-title.mb-1 {
    width: 80%;
  }

  /* about company profile */
  .vision .card {
    min-height: 32vh;
  }

  /* about integrity */
  .quality_icon_box {
    min-height: 28vh;
  }
  /* about-board */
  .image-blurred-edge img {
    max-width: 80%;
  }
  .primary-board-member .titleBox {
    width: 100%;
  }
  .primary-board-member .titleBox .caption {
    display: none;
  }
  .image-blurred-edge {
    min-height: 22vh;
    border-radius: 40px;
    padding-top: 7em;
  }



  /* csr single */
  .esg-section {
    height: 28vh;
  }

  /* product */
  .product-img img {
    border-radius: 20px;
  }

  /* CSR */
  .csr .beforeImg {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .csr.beforeImg2, .csr .beforeImg2 img {
    border-radius: 20px;
  }
  .csr .beforeImg::before {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }

  /* Investor */
  .pdf-downloads {
    flex-wrap: wrap;
  }
  .pdf-downloads > li {
    flex: 1 1 auto;
  }

  /* Quality Assurance */
  .quality_icon_box_1 {
    min-height: 15em;
  }

  /* Career */
  .career-form {
    width: 100%;
  }

  /* Locate us */
  .locate_box_1 {
    min-height: 32vh;
  }


}

@media only screen and (max-width:1024px) {

  /* General */
  h6 {
    font-size: 1.2em;
  }

  h1 {
    font-size: 1.9rem;
  }

  /* HEADER CSS */
  .flagIcon,
  .toggleIcon {
    width: 30px !important;
  }

  .logo img {
    margin-left: 0px;
  }

  /* FOOTER CSS */
  .contact_title {
    font-size: 1.7em;
  }

  .cont-btn {
    display: inline-block;
    line-height: 1em;
  }

  .footer_main {
    text-align: center;
  }

  .footer_link {
    font-size: 1em;
    margin-bottom: 1em;
  }

  .footer_main .f_comman_content.pe-5 {
    padding: 0 !important;
  }

  .footer_main .f_comman_content {
    padding-top: 1em;
  }

  .footer_main .f_det_cont.align-items-start {
    justify-content: center;
  }

  /* HOME CSS */
  /* banner */
  .banner .image-wrapper {
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
  }

  .banner .image-wrapper img {
    height: 100%;
    max-width: unset;
    width: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) !important;
  }

  .titleBox h1 {
    font-size: 2.2em;
  }

  /* product slider */
  .home-product-slider .exBox {
    min-height: 23vh;
  }

  .scleImg.desplay_product {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: 35vh;
  }

  .scleImg.desplay_product img {
    position: absolute;
    max-width: unset;
    height: 100%;
    width: auto;
  }

  /* industry presense */
  .industry-presense {
    padding: 6em 0 4em;
  }

  .industry-presense .swiper {
    overflow-y: visible;
  }

  /* vision */
  .vision {
    padding: 0em 1em;
  }

  .svgBox img {
    height: 80px;
  }

  .colBox.card {
    margin-bottom: 1em;
  }

  /* affirm */
  .affrimSection .h2-title {
    margin-bottom: 1em !important;
    display: block;
  }

  .affrimSection .col-md-6 {
    padding-bottom: 2em;
  }

  /* performance */
  .performance {
    margin-top: 0em;
    margin-bottom: 8em;
  }

  .performance img {
    width: 100%;
  }

  /* highlight */
  .highlight {
    margin: 0em 1em;
  }

  .highlight-content {
    text-align: center;
  }

  .highlight-content .h2-title.text-center {
    padding-bottom: 1em;
  }

  .highlight-content .imgContent h2 {
    font-size: 1.5em;
  }

  .imgContent {
    gap: 0.5em;
  }

  .highlight-content .linkBtn {
    margin: 0px auto;
  }

  .highlight-content .imgContent p {
    font-size: 1em !important;
  }

  /* investor */
  .investor .investorTitle {
    flex-direction: column;
    text-align: center;
  }

  .investor .investorTitle .buttons {
    justify-content: center;
    padding: 1em 0em;
  }

  .investor {
    text-align: center;
  }



  /* presence count */
  .presence-count {
    padding: 1em 1em;
  }

  .presence-count .card {
    min-height: auto;
  }

  /* csr activity */
  .home-csr.csr .investorTitle {
    flex-direction: column;
    text-align: center;
  }

  .home-csr.csr .investorTitle .linkBtn {
    margin-top: 1em;
  }

  .home-csr.csr .imgText {
    bottom: 1em;
    left: 20px;
    font-size: 1em;
    color: #fff;
    width: 80%;
  }

  .home-csr.csr .beforeImg {
    border-radius: 40px;
    overflow: hidden;
  }

  .home-csr.csr .beforeImg::before {
    bottom: 0em;
  }

  .home-csr.csr .imgText h3 {
    font-size: 1.3em;
  }

  .home-csr.csr .imgText h6,
  .home-csr.csr .imgText p {
    font-size: 0.9em;
  }

  /* ABOUT COMPANY PROFILE */
  .tabBtn,
  .quality-certification-tab.tabSection ul li .tabBtn {
    font-size: 1em;
    line-height: 1.2em;
    padding: 1em 1.5em;
  }

  .tabSection ul li,
  .quality-certification-tab.tabSection ul li {
    width: auto;
    max-width: 100%;
  }

  /* Hide scrollbar for Chrome, Safari and Opera */
  .tabSection ul::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for IE, Edge and Firefox */
  .tabSection ul {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .aboutUs-hero {
    padding: 3em 0em 3em;
  }

  .about-company-description .imgContent {
    margin-top: 1em;
    margin-bottom: 5em;
  }

  .vision .card {
    margin-bottom: 2em;
  }

  .company-profile-legacy {
    margin-bottom: 3em;
  }

  /* MILESTONE */
  .about-milestone-slider .cardBox .face.face2 {
    transform: translateY(-20px);
    margin-top: 9em;
  }

  .instesticon_sec .col-12:first-child .quality_icon_box {
    min-height: auto;
  }

  .quality_icon_box {
    min-height: 26vh;
  }

  section.instesticon_sec {
    padding-right: 1em;
    margin-top: 4em;
  }

  /* PRODUCT DETAILS */
  .product-detail-pro-image.section-pro-image .main-img4 {
    height: auto;
  }

  /* product-detail-inner page */
  .manu-feature .main-img {
    height: auto;
  }

  /* CSR ACTIVITY */
  .csr .beforeImg2 {
    height: auto;
  }

  .csr-activity-items .imgText h2 {
    font-size: 1.6em;
  }

  .csr-activity-items .imgText {
    bottom: 40px;
    left: 40px;
  }

  /* investor financial */
  .rowLine {
    gap: 1em;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width:767px) {

  /* HEADER CSS */
  h1 {
    font-size: 1.7rem;
  }
  .contact_btn.linkBtn {
    display: none;
  }

  .flagIcon {
    display: none;
  }

  .down_btn.linkBtn {
    font-size: 0.7em;
  }

  /* FOOTER CSS */
  .footer_link {
    font-size: 0.9em;
    margin-bottom: 0.7em;
  }
  .contact_title {
    font-size: 1.6em;
  }

  /* HOME PAGE CSS */
  .titleBox {
    top: 24%;
  }
  .titleBox h3 {
    font-size: 1.7em;
    line-height: 1.2em;
  }
  .image-wrapper video {
    border-radius: 20px;
  }
  .banner .image-wrapper {
    border-radius: 20px;
  }
  .home-intro.banner .image-wrapper {
    height: 20vh;
  }
  .titleBox h1 {
    font-size: 1.5em;
  }
  .svgBox {
    width: 100px;
    height: 100px;
  }
  .vision .card {
    min-height: auto;
  }
  .presence-count .card {
    min-height: auto;
  }
  .home-csr.csr .imgText h6, .home-csr.csr .imgText p {
    display: none;
  }
  .presence-count {
    padding: 2em 1em 5em;
  }
  .swiper {
    padding: 1em 0.5em 0em;
    margin-top: 2em;
  }

  /* ABOUT COMPANY PROFILE */
  .banner img {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .tabBtn {
    font-size: 0.8em;
    padding: 1em 1em;
  }
  .tabSection ul li, .quality-certification-tab.tabSection ul li {
    width: auto;
    max-width: 100%;
  }
  .performance {
    margin-top: 3em;
    margin-bottom: 3em;
  }
  .team-slider .swiper-button-prev,
  .team-slider .swiper-button-next {
    top: 1em !important;
  }
  .quality_icon_box {
    min-height: auto;
  }
  .bw.w-100.bulb img {
    width: 80%;
  }
  section.instesticon_sec {
    padding-right: 0em;
    margin-top: 4em;
  }
  .quality_icon_box {
    min-height:auto;
  }

  /* Product Inner */
  .product-page-title .title {
    font-size: 1.4em;
  }
  .salient-features {
    height: auto;
  }
  .specification-grade {
    padding: 20px 30px 20px 30px;
  }
  .manu-feature .main-img {
    border-radius: 20px;
  }
  /* about-board */
  .image-blurred-edge img {
    max-width: 80%;
  }
  .primary-board-member .titleBox {
    width: 100%;
  }
  .primary-board-member .titleBox .caption {
    display: none;
  }
  .image-blurred-edge {
    min-height: 22vh;
    border-radius: 40px;
    padding-top: 7em;
  }

  /* CSR activity */
  .csr-activity-items .imgText h2 {
    font-size: 1.4em;
  }

  /* Quality Certification */
  .iso_img_box_1 a {
    height: auto;
  }

  /* Quality Assurance */
  .quality_icon_box_1 {
    border-radius: 20px;
    min-height: auto;
  }

  /* CAREER  */
  .career-form {
    width: 100%;
  }

  /* Locate us */
  .locate_box_1 {
    border-radius: 20px;
    min-height: auto;
  }

  /* Investor */
  .pdf-downloads {
    flex-wrap: wrap;
  }
  .pdf-downloads > li {
    flex: 1 1 auto;
  }

}

@media (min-width: 415px) {}