:root {
  --lightgreen: #22b573;
  --darkgreen: #006837;
  --gray: #7280a5;
  --blue-gradient: linear-gradient(
    90deg,
    rgba(34, 181, 115, 1) 0%,
    rgba(5, 177, 191, 1) 100%
  );
  --black: #000000;
  --white: #ffffff;
  --textColor: #05b1bf;
  --smoothAnimation: all 0.5s ease;
}

/* Fonts Start */

@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Thin.woff2) format("woff2"),
    url(../fonts/Poppins-Thin.woff) format("woff"),
    url(../fonts/Poppins-Thin.ttf) format("ttf");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-ExtraLight.woff2) format("woff2"),
    url(../fonts/Poppins-ExtraLight.woff) format("woff"),
    url(../fonts/Poppins-ExtraLight.ttf) format("ttf");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Light.woff2) format("woff2"),
    url(../fonts/Poppins-Light.woff) format("woff"),
    url(../fonts/Poppins-Light.ttf) format("ttf");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Regular.woff2) format("woff2"),
    url(../fonts/Poppins-Regular.woff) format("woff"),
    url(../fonts/Poppins-Regular.ttf) format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Medium.woff2) format("woff2"),
    url(../fonts/Poppins-Medium.woff) format("woff"),
    url(../fonts/Poppins-Medium.ttf) format("ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-SemiBold.woff2) format("woff2"),
    url(../fonts/Poppins-SemiBold.woff) format("woff"),
    url(../fonts/Poppins-SemiBold.ttf) format("ttf");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Bold.woff2) format("woff2"),
    url(../fonts/Poppins-Bold.woff) format("woff"),
    url(../fonts/Poppins-Bold.ttf) format("ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-ExtraBold.woff2) format("woff2"),
    url(../fonts/Poppins-ExtraBold.woff) format("woff"),
    url(../fonts/Poppins-ExtraBold.ttf) format("ttf");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Black.woff2) format("woff2"),
    url(../fonts/Poppins-Black.woff) format("woff"),
    url(../fonts/Poppins-Black.ttf) format("ttf");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Fonts end */

/* Common CSS Start*/
body {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

.multi-gradient-btn {
  display: block;
  text-transform: capitalize;
  background: var(--blue-gradient);
  background-size: cover;
  color: var(--white);
  padding: 14px 35px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  transition: var(--smoothAnimation);
  overflow: hidden;
  position: relative;
  max-width: 210px;
  cursor: pointer;
  border: none;
}
.multi-gradient-btn::before {
  content: "";
  display: block;
  width: 0%;
  height: 100%;
  background: var(--darkgreen);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  transition: var(--smoothAnimation);
  pointer-events: none;
  border: none;
}
.multi-gradient-btn:hover::before {
  width: 100%;
  left: 0;
  right: auto;
  border: none;
}
@media (max-width: 991px) {
  .multi-gradient-btn {
    padding: 12px 18px;
    font-size: 14px;
  }
}
.multi-gradient-btn span {
  position: relative;
  z-index: 0;
}

/* .common-img-shadow img{
    box-shadow: 0px 3px 6px var(--white);
  } */

.common-back-img {
  background-image: url(../images/common-back.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  padding: 100px 0;
}

.common-back-img::before {
  opacity: 0.8;
}

.common-back-img::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background-color: #05b1bf4f;
  opacity: 0.9;
}

.common-button {
  display: block;
  text-transform: capitalize;
  background: var(--darkgreen);
  background-size: cover;
  color: var(--white);
  padding: 14px 35px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  transition: var(--smoothAnimation);
  overflow: hidden;
  position: relative;
  max-width: 210px;
}
.common-button::before {
  content: "";
  display: block;
  width: 0%;
  height: 100%;
  background: var(--blue-gradient);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  transition: var(--smoothAnimation);
  pointer-events: none;
}
.common-button:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
@media (max-width: 991px) {
  .common-button {
    padding: 12px 18px;
    font-size: 14px;
  }
}
.common-button span {
  position: relative;
  z-index: 0;
}

.common-spacing {
  margin: 90px 0;
}

.common-title-white h1 {
  color: var(--white);
  /* text-shadow: 10px 9px 25px var(--black); */
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 20px;
}

.common-title h1 {
  color: var(--darkgreen);
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* .common-title h1::before{
    content: "";
    width: 30px;
    height: 5px;
    border-radius: 20px;
    background: var(--blue-gradient);
    position: absolute;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    bottom: 8px;
    pointer-events: none;
  } */

.common-text-white {
  font-size: 16px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 40px;
}

.common-text {
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 40px;
}
/* Common CSS End*/

/* Header CSS Start*/

.header-section.scrolled {
  background-color: var(--white) !important;
  transition: background-color 200ms linear;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.header-section .navbar-nav .nav-link.active {
  color: var(--darkgreen);
}

.landing-page .header-section {
  background: transparent;

}
.header-section {
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  z-index: 5;
  position: fixed;
  padding: 15px 0;

  background: var(--white);
}
.navbar-brand {
  order: 0;
  max-width: 200px;
}

.navbar-brand img {
  width: 70%;
}

.navbar-toggler {
  order: 2;
  box-shadow: none;
  position: relative;
  width: 50px;
  height: 50px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-toggler:focus,
.navbar-toggler:focus-visible {
  outline: none;
  box-shadow: none;
}

.member-area-btn {
  order: 1;
  margin-left: auto;
}

.navbar-nav .nav-link {
  padding: 20px 14px;
  font-size: 16px;
  color: var(--black);
  position: relative;
  font-weight: 500;
  transition: var(--smoothAnimation);
}
@media (max-width: 1199px) {
  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 20px 10px;
  }
}
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    font-size: 18px;
    color: var(--white);
  }
  .navbar-nav .nav-link.show,
  .navbar-nav .nav-link.active {
    color: var(--white);
  }
}
@media (max-width: 767px) {
  .navbar-nav .nav-link {
    font-size: 16px;
    padding: 12px 0;
  }
}
.navbar-nav .nav-link:hover {
  color: var(--darkgreen);
}
@media (max-width: 991px) {
  .navbar-nav .nav-link:hover {
    color: var(--white);
  }
}
.navbar-nav .nav-link::before {
  content: "";
  width: 30px;
  height: 5px;
  border-radius: 20px;
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 8px;
  pointer-events: none;
}
.navbar-nav .nav-link.active::before {
  background: var(--blue-gradient);
}
@media (max-width: 991px) {
  .navbar-nav .nav-link::before {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .navbar-nav .nav-link::before {
    bottom: 0px;
    height: 3px;
  }
}

.navbar-expand-lg {
  justify-content: flex-start;
  position: static;
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 20px 14px;
  }
}
.navbar-expand-lg .navbar-nav .dropdown {
  position: relative;
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    padding: 30px 0;
  }
}

.dropdown-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dropdown-details ul li {
  margin-bottom: 12px;
}
.dropdown-details ul li:last-child {
  margin-bottom: 0;
}
.dropdown-details ul li h6 {
  color: var(--lightText);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .dropdown-details ul li h6 {
    color: var(--white);
  }
}
@media (max-width: 575px) {
  .dropdown-details ul li h6 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
  }
}
.dropdown-details ul li a {
  text-decoration: none;
  color: var(--darkgreen);
  transition: var(--smoothAnimation);
  position: relative;
  font-size: 18px;
  font-weight: normal;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .dropdown-details ul li a {
    color: var(--white);
    font-size: 13px;
  }
}

.dropdown-details ul li a:hover::before {
  width: 5px;
  opacity: 1;
}

@media (max-width: 991px) {
  .dropdown-details > ul {
    grid-gap: 20px;
  }
}
@media (max-width: 767px) {
  .dropdown-details > ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .dropdown-details > ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.dropdown-details > ul > li {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .member-area-btn {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .member-area-btn {
    margin-right: 10px;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    width: calc(100% + 12px);
    left: -12px;
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 20px;
    overflow: auto;

    z-index: 4;
  }
}
@media (max-width: 767px) {
  .navbar-collapse {
    height: calc(100vh - 88px);
  }
}

.navbar-toggle-custom-icon {
  background: var(--blue-gradient);
  width: 30px;
  height: 3px;
  display: block;
  transition: var(--smoothAnimation);
  border-radius: 20px;
}
.navbar-toggle-custom-icon::before,
.navbar-toggle-custom-icon::after {
  content: "";
  background: var(--blue-gradient);
  width: 30px;
  height: 3px;
  display: block;
  position: relative;
  border-radius: 20px;
  top: -7px;
  transition: var(--smoothAnimation);
}
.navbar-toggle-custom-icon:after {
  top: auto;
  bottom: -4px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggle-custom-icon {
  background: transparent;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggle-custom-icon::before {
  transform: rotate(45deg);
  top: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggle-custom-icon::after {
  transform: rotate(-45deg);
  top: -3px;
}

.navbar .dropdown-menu {
  border: none;
  padding: 10px;
  width: 210px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    background: rgba(0, 0, 0, 0.5);
  }
}

@media (max-width: 991px) {
  .navbar .dropdown-menu .dropdown-item {
    color: var(--white);
  }
}
.navbar .dropdown-menu .dropdown-item:last-child {
  margin-bottom: 0;
}
.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
  background: var(--multiGradient);
  color: var(--white);
  border-radius: 4px;
}

/* Header CSS End*/

/* Footer CSS start*/
.footer-section {
  background-color: #131517;
  padding: 45px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .footer-section {
    padding: 50px 0 40px;
  }
}
.footer-section::before,
.footer-section::after {
  content: "";
  width: 100%;
  height: 5px;
  background: var(--blue-gradient);
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.footer-section::after {
  height: 15px;
  filter: blur(50px);
}
@media (max-width: 991px) {
  .footer-section .ftr-main-details {
    margin-bottom: 30px;
  }
}
.footer-section .ftr-main-details > a {
  display: inline-block;
  margin-bottom: 30px;
}
.footer-section .ftr-main-details > a > img {
  width: 150px;
  filter: brightness(0) invert(1);
}
@media (max-width: 575px) {
  .footer-section .ftr-main-details > a > img {
    width: 120px;
  }
}
.footer-section .ftr-main-details p {
  font-size: 16px;
  margin-bottom: 20px;
}
.footer-section .ftr-main-details ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-section .ftr-main-details ul li a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 50%;
  background: var(--blue-gradient);
  transition: var(--smoothAnimation);
}
.footer-section .ftr-main-details ul li a:hover {
  opacity: 0.7;
}
.footer-section .ftr-all-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media (max-width: 575px) {
  .footer-section .ftr-all-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer-section .ftr-all-links .ftr-links h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 14px;
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-section .ftr-all-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-section .ftr-all-links ul li a {
  font-size: 16px;
  padding-bottom: 8px;
  color: var(--white);
  display: block;
  text-decoration: none;
  transition: var(--smoothAnimation);
}
.footer-section .ftr-all-links ul li a:hover {
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1199px) {
  .footer-section .ftr-all-links ul li a {
    font-size: 14px;
  }
}
.footer-section .bottom-ftr {
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-section .bottom-ftr p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .footer-section .bottom-ftr p {
    font-size: 14px;
  }
}

/* Footer CSS End*/

/* hero-section css start */

.hero-section .banner-caption {
  position: absolute;
    /* max-width: 860px; */
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
}

.hero-section .item::before {
  background-color: #ffffff69;
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-section .banner-caption h1 {
  font-size: 50px;
  color: var(--darkgreen);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  text-align: center;
  /* text-shadow: 10px 9px 25px white; */
}

.hero-section .banner-caption p {
  font-size: 15px;
  color: var(--darkgreen);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 30px;
}

.hero-section .item img {
  height: 100vh;
}

.hero-section .button-section a {
  text-decoration: none;
}

.hero-section .button-section a:first-child {
  margin-right: 30px;
}
.button-section {
  align-items: center;
  justify-content: center;
}

/* .owl-carousel.hero-slider  .owl-item img{
  height: 100vh;
} */

.owl-theme.hero-slider .owl-nav.disabled + .owl-dots {
  margin-top: -45px;
  z-index: 3;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.owl-theme.hero-slider .owl-dots .owl-dot span {
  width: 35px;
  height: 15px;
}

.owl-theme.hero-slider .owl-dots .owl-dot.active span {
  background: var(--darkgreen);
}
/* hero-section css end */

/* featured-products section css start  */

.featured-products .title p {
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 50px;
}

/* .featured-products .products .row .col-6 {
  display: flex;
  align-items: center;
  justify-content: center;
} */

.featured-products .products .row {
  row-gap: 30px;
}

/* .featured-products .products .product-logo img{
  width: 80%;
  filter: black; 
  -webkit-filter: grayscale(100%);
  transition: var(--smoothAnimation);
}

.featured-products .products .product-logo img:hover{
  filter: none;
  -webkit-filter: grayscale(0%);
} */
.owl-theme.product-slider .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
}

.owl-theme.product-slider .owl-nav.disabled + .owl-dots {
  margin-top: 40px;
}

.product-slider.owl-theme .owl-dots .owl-dot.active span {
  background: var(--darkgreen);
}
/* featured-products section css end  */

/* about-company section css start  */

.about-company .title a {
  text-decoration: none;
}

.about-company {
  position: relative;
  z-index: 4;
}

/* about-company section css end  */

/* research-and-development section css start  */

.research-section .title a {
  text-decoration: none;
}

/* research-and-development section css end  */

/* quality-assurance section css start */

.quality-assurance .title a {
  text-decoration: none;
}

.quality-assurance {
  position: relative;
  z-index: 4;
}

/* quality-assurance section css end */

/* Contact-us section css start  */

.title h6 {
  color: var(--darkgreen);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
}

.contact-us .form-details input {
  border-bottom: 1px solid #0068374a !important;
  width: 90%;
  padding: 10px 0;
  border: none;
  /* margin-bottom: 30px; */
}

.contact-us .contact-form .col-12{
  margin-bottom: 30px;
}

.contact-us .form-details input:focus-visible {
  outline: none;
}

.contact-us .form-details textarea:focus-visible {
  outline: none;
}

.contact-us .form-details textarea {
  border-bottom: 1px solid #0068374a !important;
  width: 95%;
  padding: 25px 0;
  border: none;
  margin-bottom: 50px;
}

.contact-us .button-section a {
  text-decoration: none;
}
/* Contact-us section css end  */

/* company page css start--------------- */

/* hero section css start  */

.hero-section-company .hero-banner-back.company-banner {
  background-image: url(../images/Banner-Company.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 370px;
  margin-top: 104px;
  position: relative;
}

.hero-section-company .hero-banner-back.manufacturing-banner {
  background-image: url(../images/Banner-Manufacturing.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 370px;
  margin-top: 104px;
  position: relative;
}

.hero-section-company .hero-banner-back.product-banner {
  background-image: url(../images/Banner-Manufacturing.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 370px;
  margin-top: 104px;
  position: relative;
}

.hero-section-company .hero-banner-back.research-banner {
  background-image: url(../images/Banner-Research.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 370px;
  margin-top: 104px;
  position: relative;
}

.hero-section-company .hero-banner-back.career-banner {
  background-image: url(../images/Banner-Career.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 370px;
  margin-top: 104px;
  position: relative;
}

.hero-section-company .hero-banner-back::before {
  background-color: rgba(7, 7, 8, 0.248);
  content: "";
  display: block;
  height: 370px;
  position: absolute;
  width: 100%;
}

.hero-section-company .hero-banner-back .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-section-company .hero-banner-back h1 {
  font-size: 44px;
  font-weight: 600;
  color: var(--white);
  /* text-shadow: 10px 9px 25px var(--black); */
  margin-bottom: 14px;
  z-index: 1;
  text-align: center;
}

.hero-section-company .hero-banner-back p {
  font-size: 15px;
  font-weight: 400;
  /* line-height: 1.2; */
  color: var(--white);
  /* text-shadow: 10px 9px 25px var(--black); */
  max-width: 900px;
  margin-bottom: 14px;
  z-index: 1;
  text-align: center;
}

/* hero section css end  */

/* mission-and-values section css start */

.mission-and-values {
  position: relative;
  z-index: 4;
}

.mission-and-values .title li span {
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
}

.mission-and-values .title li {
  margin-bottom: 12px;
}

.mission-and-values .title li::marker {
  color: var(--white);
  font-size: 20px;
}
.mission-and-values .title ul{
  padding-left: 20px;
}

/* mission-and-values section css end */

/* our-team section css strat  */

.team-member {
  margin-top: 20px;
  display: inline-block;
}

.team-img h3 {
  color: var(--darkgreen);
  font-weight: 600;
}

.team-img .card {
  transition: var(--smoothAnimation);
  overflow: hidden;
  border-radius: 12px;
}

.team-img .card figure {
  margin: 0;
  transition: var(--smoothAnimation);
}

.team-img .card img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  transition: var(--smoothAnimation);
}

.team-img .card-body {
  transition: var(--smoothAnimation);
}

.team-img .card:hover img {
  transform: scale(1.02);
}

.team-img .card:hover .card-body {
  background: var(--darkgreen);
}

.team-img .card:hover h5 {
  color: var(--white);
}

.team-img .card:hover h3 {
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-img h5 {
  color: var(--darkgreen);
  font-weight: 400;
}

.team-member .row {
  row-gap: 30px;
}

.team-img a {
  text-decoration: none;
}
/* our-team section css end  */

/* company page css end--------------- */

.production-facilities {
  position: relative;
  z-index: 4;
}

.innovation-process {
  position: relative;
  z-index: 4;
}

.company-img img {
  border-radius: 12px;
}

.contact-pic img {
  border-radius: 12px;
}

.mission-img img {
  border-radius: 12px;
}

.manufacturing-img img {
  border-radius: 12px;
}

.research-img img {
  border-radius: 12px;
}

/* career page css start */

.career-form {
  margin-top: 30px;
}

.career-form input#myfile{
  border-bottom: none !important;
}



.file-upload {
  display: block;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
}
.file-upload .file-select {
  display: block;
  border: 2px solid #dce4ec;
  color: #34495e;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  text-align: left;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}
.file-upload .file-select .file-select-button {
  background: #dce4ec;
  padding: 0 10px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
}
.file-upload .file-select .file-select-name {
  line-height: 40px;
  display: inline-block;
  padding: 0 10px;
}
.file-upload .file-select:hover {
  border-color: #34495e;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.file-upload .file-select:hover .file-select-button {
  background: #34495e;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.file-upload.active .file-select {
  border-color: #3fa46a;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.file-upload.active .file-select .file-select-button {
  background: #3fa46a;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.file-upload .file-select input[type="file"] {
  z-index: 100;
  cursor: pointer;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}
.file-upload .file-select.file-select-disabled {
  opacity: 0.65;
}
.file-upload .file-select.file-select-disabled:hover {
  cursor: default;
  display: block;
  border: 2px solid #dce4ec;
  color: #34495e;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  margin-top: 5px;
  text-align: left;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}
.file-upload .file-select.file-select-disabled:hover .file-select-button {
  background: #dce4ec;
  color: #666666;
  padding: 0 10px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
}
.file-upload .file-select.file-select-disabled:hover .file-select-name {
  line-height: 40px;
  display: inline-block;
  padding: 0 10px;
}




.career-form input {
  border-bottom: 1px solid #00683761 !important;
  width: 100%;
  padding: 10px 0;
  border: none;
  /* margin-bottom: 40px; */
}

.productPopupContainer .modal-header h1{
  font-size: 28px;
}

.career-form .col-12{
  margin-bottom: 40px;
}

.career-form textarea {
  border-bottom: 1px solid #00683761 !important;
  width: 100%;
  padding: 10px 0;
  border: none;
  /* margin-bottom: 40px; */
}

.career-form input:focus-visible {
  outline: none;
}

.career-form textarea:focus-visible {
  outline: none;
}

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.upload-btn-wrapper input[type="file"] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

/* career page css end */

/* contact-page css strat */

.contact-box {
  margin-top: 60px;
}

.contact-box .boxes {
  box-shadow: 0px 20px 99px 1px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: var(--smoothAnimation);
  height: 100%;
  border-radius: 10px;
}

.contact-box .boxes:hover {
  background: var(--darkgreen);
}

.contact-box .boxes:hover i {
  color: var(--white);
}

.contact-box .boxes:hover a {
  color: var(--white);
}

.contact-box .boxes:hover h6 {
  color: var(--white);
}

.contact-box .boxes:hover h4 {
  background: var(--white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-box a {
  text-decoration: none;
  transition: var(--smoothAnimation);
}

.contact-box .boxes i {
  color: var(--darkgreen);
  font-size: 22px;
  margin-bottom: 10px;
}

.contact-box .boxes h4 {
  color: var(--darkgreen);
  font-size: 26px;
  font-weight: 600;
}

.contact-box .boxes h6 {
  color: var(--darkgreen);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.contact-box .boxes a {
  color: var(--darkgreen);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.contact-box .row {
  row-gap: 20px;
}
/* contact-page css end */

/* product-page css start */

.product-category .product-card {
  box-shadow:0px 4px 15px 2px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: var(--smoothAnimation);
  width: 100%;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-category .product-card h4{
  color: var(--darkgreen);
  font-size: 24px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 0;
}

.product-category a{
  text-decoration: none;
display: block;
height: 100%;
}

.product-category {
  margin-top: 60px;
}

.product-category .product-card img{
  max-width: 150px;
  height: auto;
  margin: 0 auto;
  flex: 1;
  object-fit: contain;

}




.products-page-images .product-category .product-card h4{
margin-top: 0;
}

.products-page-images .product-category .product-card img{
  display: none;

}

.product-category .row {
  row-gap: 20px;
}

.product-description {
  margin-top: 50px;
}

.modal {
  --bs-modal-width: 800px;
}

.produt-popup .modal-title {
  color: var(--darkgreen);
  font-size: 30px;
  font-weight: 600;
}

.product-description .product-logo {
  box-shadow: 0px 20px 99px 1px rgba(0, 0, 0, 0.1);
  padding: 20px 0px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  max-width: 400px;
}

.product-description .product-logo img {
  width: 60%;
}

.product-description .product-details ul {
  list-style: none;
}

.product-description .product-details li::before {
  content: "";
  width: 10px;
  height: 5px;
  border-radius: 20px;
  background: var(--blue-gradient);
  position: absolute;
  left: -17px;
  bottom: 0;
  top: 9px;
  pointer-events: none;
}

.product-description .product-details h5 {
  font-size: 20px;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 15px;
}

.product-description .product-details ul li {
  font-size: 16px;
  color: var(--black);
  margin-bottom: 10px;
  position: relative;
}
/* product-page css end */

/* privacy-policy-section css start */

.privacy-policy-section .pp-details {
  margin-top: 30px;
}

.privacy-policy-section h5 {
  color: var(--darkgreen);
  font-size: 20px;
  font-weight: 700;
}

.privacy-policy-section p {
  color: var(--black);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}

.privacy-policy-section .pp-details li {
  color: var(--black);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.container.check {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.privacy-policy-section label {
  color: var(--darkgreen);
  font-weight: 700;
}

.container.check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.container.check input:checked ~ .checkmark {
  background-color: var(--darkgreen);
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 4px;
  background-color: #eee;
}

.container.check input:checked ~ .checkmark:after {
  display: block;
}

.container.check .checkmark:after {
  left: 9px;
  top: 5px;
  width: 6px;
  height: 13px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.job-openings .job-details {
  margin-top: 60px;
}

.job-openings .job-details .job-opening-cards {
  box-shadow: 0px 20px 99px 1px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: var(--smoothAnimation);
  height: 100%;
  border-radius: 10px;
  position: relative;
  /* display: flex;
    justify-content: center;
    align-items: center; */
}
.job-openings .job-details .job-opening-cards:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--blue-gradient);
  border-radius: 10px;
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
}

.job-openings .job-details .job-opening-cards h2 {
  font-size: 18px;
  color: var(--darkgreen);
  font-weight: 500;
  margin-bottom: 20px;
}

.job-openings .job-details .job-opening-cards h4 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 20px;
  color: #8b8989;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}



.job-openings .job-details .job-opening-cards ul{
  padding-left: 20px;
}

.job-openings .job-details .job-opening-cards li {
  font-size: 16px;
  margin-top: 10px;
}

.about-sub-company .sub-company-details .sub-company-logo img{
  width: 80%;
}

.about-sub-company .sub-company-details {
  box-shadow: 0px 20px 99px 1px rgba(0, 0, 0, 0.1);
  padding: 60px;
  border-radius: 20px;
  margin-top: -100px;
  z-index: 4;
  position: relative;
  background-color: var(--white);
}

.about-sub-company .sub-company-details .common-title h1 {
  margin-bottom: 0;
}

.common-back-img.quality {
  padding: 100px 0px 145px 0px;
}

/* privacy-policy-section css end */



/* new loader */
.c-logo {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  background: #fff;
  transform: scale(1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  height: 100vh;
  position: fixed;
  z-index: 20;
  width: 100%;
}

.c-logo__icon {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  max-width: 260px;
  fill: #fff;
}

.c-logo__fill {
  width: 100%;
  height: 100px;
  background: #fff;
  position: absolute;
  z-index: 99;
  -webkit-animation: fillUp 3s ease-in-out infinite;
  animation: fillUp 3s ease-in-out infinite;
}

@-webkit-keyframes fillUp {
  0% {
    transform: translate(0, 135px);
  }
  100% {
    transform: translate(0, -135px);
  }
}

@keyframes fillUp {
  0% {
    transform: translate(0, 135px);
  }
  100% {
    transform: translate(0, -135px);
  }
}
.x-reset-container {
  height: 100vh;
  position: fixed;
  z-index: 20;
  width: 100%;
  display: block;
}
.no-scroll{
  overflow: hidden;
}

/* new loader */


.featured-products .products .product-category{
  margin-top: 0px;
}

.product-category .owl-stage-outer{
  padding: 15px 0;
}
.validation-msg{
  color: red;
}