/* General Style */
@import url("../css/bootstrap.min.css");
/* font-family: "Poppins", sans-serif; */

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html {
  overflow-x: hidden;
}
:root {
  --poppins: "Poppins", sans-serif;
  --primary: #b4d342;
  --white: #ffffff;
  --black: #000000;
}
body {
  margin: 0px;
  padding: 0px;
  background-color: var(--white);
  overflow: hidden;
  font-family: var(--poppins);
  -ms-overflow-style: scrollbar;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text);
}

@media (max-width: 1600px) {
  body {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  body {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

img {
  max-width: 100%;
  height: auto;
}
::selection {
  background: var(--black);
  color: var(--white);
}
::-moz-selection {
  background: var(--black);
  color: var(--white);
}
::-webkit-selection {
  background: var(--black);
  color: var(--white);
}
/* --------------------------------------------------------------- Typography ------------------------------------------------------------------- */
b,
strong {
  font-weight: 700;
}
a {
  color: var(--black);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:hover,
a:focus {
  text-decoration: none;
  color: var(--primary);
  outline: 0;
}
h1:not(.site-title):before,
h2:before {
  display: none;
}
h1 {
  font-size: 40px;
  line-height: 1.3;
}
@media (max-width: 1600px) {
  h1 {
    font-size: 36px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 22px;
  }
}

h2 {
  font-size: 30px;
  line-height: 1.1;
}

@media (max-width: 1600px) {
  h2 {
    font-size: 28px;
  }
}
@media (max-width: 1199px) {
  h2 {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 20px;
  }
}

h3 {
  font-size: 24px;
  line-height: 1.15;
}
@media (max-width: 1600px) {
  h3 {
    font-size: 22px;
  }
}
@media (max-width: 1199px) {
  h3 {
    font-size: 21px;
  }
}
@media (max-width: 991px) {
  h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  h3 {
    font-size: 16px;
  }
}

h1,
h2,
h2.sm,
h3,
h4,
h5 {
  margin: 0 0 20px;
  color: var(--primary);
  font-family: var(--poppins);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: capitalize;
}
p,
ol,
ul,
blockquote {
  margin: 0 0 30px;
  padding: 0;
}
ol li,
ul li {
  list-style-type: none;
}
@media (max-width: 1600px) {
  p,
  ol,
  ul,
  blockquote {
    margin: 0 0 25px;
    padding: 0;
  }
}
@media (max-width: 1600px) {
  p,
  ol,
  ul,
  blockquote {
    margin: 0 0 20px;
    padding: 0;
  }
}
@media (max-width: 767px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  p,
  ol,
  ul,
  blockquote {
    margin: 0 0 15px;
  }
}

/* banner section css start */
.banner {
  background-color: var(--primary);
  margin-bottom: 0;
  padding: 100px 0;
}
.banner h1 {
  color: var(--white);
  margin-bottom: 0;
}

.banner.bg_grey_dark h1 {
  color: var(--primary);
}
.banner h1 span {
  display: block;
  position: relative;
  color: var(--white);
  padding: 20px 0;
  margin-bottom: 20px;
}
.banner h1 span::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 5px;
  background-color: var(--white);
  left: 0;
  bottom: 0;
}
@media (max-width: 1600px) {
  .banner {
    padding: 90px 0;
  }
}
@media (max-width: 991px) {
  .banner {
    padding: 70px 0;
  }
}
@media (max-width: 575px) {
  .banner {
    padding: 50px 0;
  }
  .banner h1 span {
    padding: 10px 0;
  }
}
/* banner section css end */

/* Sections */
section,
.sections {
  padding: 100px 0;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.sections.lg {
  padding: 150px 0;
}
.bg_grey {
  background-color: #f9f7f0;
}
.bg_grey_dark {
  background-color: #787f84;
}
.section_title {
  margin-bottom: 30px;
}
.section_title,
.description {
  padding-left: 20px;
  position: relative;
}
.section_title h2 {
  position: relative;
}
.section_title h2:last-child,
.description p:last-child,
.description ul:last-child {
  margin-bottom: 0;
}
.section_title::before,
.description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #a9aaad;
  border-radius: 10px;
}
.description ul {
  padding-left: 30px;
}
.description ul li {
  list-style: disc;
  color:#606062;
  margin: 10px 0;
}
.description ul li p {
  margin-bottom: 0;
  color: var(--black);
  display: inline;
}
.description ul li:last-child {
  margin-bottom: 0;
}
.tb_space {
  margin-top: -15px;
  margin-bottom: -15px;
}
.tb_space > div {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 1600px) {
  .sections {
    padding: 80px 0;
  }
  .sections.lg {
    padding: 120px 0;
  }
}
@media (max-width: 1199px) {
  .sections {
    padding: 70px 0;
  }
  .sections.lg {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .sections {
    padding: 60px 0;
  }
  .sections.lg {
    padding: 80px 0;
  }
  .description ul {
    padding-left: 20px;
  }
  .section_title::before,
  .description::before {
    width: 4px;
  }
}
@media (max-width: 767px) {
  .sections {
    padding: 50px 0;
  }
  .section_title::before,
  .description::before {
    width: 3px;
  }
  .sections.lg {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .sections {
    padding: 40px 0;
  }
  .sections.lg {
    padding: 40px 0;
  }
  .section_title,
  .description ul {
    padding-left: 15px;
  }
  .section_title::before,
  .description::before {
    width: 2px;
  }
}

/* Product Image Section CSS Start */
.product_img_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.product_box {
  border: 2px solid #606062;
  height: 400px;
  transition: all 0.25s;
  overflow: hidden;
}
.product_box img {
  width: 100%;
  height: 100%;
  transition: all 0.25s;
}
.product_box:hover {
  border-color: var(--primary);
}
.product_box:hover img {
  transform: scale(1.25);
}

@media (max-width: 1600px) {
  .product_img_wrapper {
    gap: 40px;
  }
  .product_box {
    height: 350px;
  }
}
@media (max-width: 1199px) {
  .product_img_wrapper {
    gap: 30px;
  }
  .product_box {
    height: 300px;
  }
}
@media (max-width: 991px) {
  .product_img_wrapper {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .product_box {
    max-height: 300px;
  }
}
@media (max-width: 767px) {
  .product_box {
    max-height: 250px;
  }
}
@media (max-width: 575px) {
  .product_box {
    width: 250px;
    max-width: 100%;
    height: auto;
    max-height: 100%;
  }
}
/* Product Image Section CSS End */

/* indication And Features */
.two_div {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  height: 100%;
}

@media (max-width: 991px) {
  .two_div {
    flex-wrap: wrap;
    gap: 20px;
  }
  .two_div > div {
    width: 100%;
  }
}

/* indication And Features */

/* Product Details Image */
.prod_details_img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  max-height: 600px;
}
.prod_details_img img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1600px) {
  .prod_details_img {
    max-width: 600px;
  }
}
@media (max-width: 1199px) {
  .prod_details_img {
    max-width: 580px;
  }
}
@media (max-width: 991px) {
  .prod_details_img {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .prod_details_img {
    max-width: unset;
    width: auto;
  }
}
/* Product Details Image */

/* Size and For More */
table tr:nth-child(odd) th {
  background-color: var(--primary);
  color: var(--white);
}
table tr:nth-child(even) th {
  background-color: #e5efc1;
  color: var(--black);
}
table tr:nth-child(odd) td {
  background-color: #ffffff;
}
table tr:nth-child(even) td {
  background-color: #f2f2f2;
}
table tr th,
table tr td {
  border: 3px solid #f9f7f0;
  text-align: center;
  padding: 8px 16px;
}
table tr td {
  color: var(--black);
}
.for_more {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.for_more .description {
  margin-bottom: 0;
  height: 100%;
}

.for_more .description ul li {
  color: var(--black);
  margin-bottom: 50px;
}
.for_more .description ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 1600px) {
  .for_more .description ul li {
    margin-bottom: 40px;
  }
}
@media (max-width: 1199px) {
  .for_more .description ul li {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .for_more {
    margin-top: 30px;
    height: auto;
  }
  .for_more .description ul li {
    margin-bottom: 20px;
  }
  table tr th,
  table tr td {
    padding: 7px 14px;
  }
}

@media (max-width: 575px) {
  table tr th,
  table tr td {
    border: 2px solid #f9f7f0;
    padding: 6px 12px;
  }
}
/* Size and For More */

.category-tab,
.subcategory-tab,
.childcategory-tab {
  margin: 0 5px 10px 0;
}
.active-tab {
  background-color: #0d6efd;
  color: white;
}
.product-card:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tab {
  padding: 10px 0;
  cursor: pointer;
  margin: 0 15px;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}
.product {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 3px solid #a9aaab;
  text-align: center;
  overflow: hidden;
  height: 100%;
  transition: all 0.25s;
}
.product .fit_icon {
  position: relative;
  width: 100%;
  height: 300px;
  text-align: center;
  overflow: hidden;
  transition: all 0.25s;
}
.product .fit_icon::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  opacity: 0.3;
  display: none;
  transition: all 0.25s;
  z-index: 1;
}
.product:hover .fit_icon::before {
  display: block;
}
.product img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: contain;
  transition: all 0.25s;
}
.product:hover {border-color: var(--primary);}
.product:hover .fit_icon img {
  transform: scale(1.08);
}
.product_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  padding: 20px;
  background-color: #a9aaab;  
  height: calc(100% - 300px); 
  transition: all 0.25s;
}
.product_content h3 {
  width: 100%;
  color: var(--white);
  font-weight: 400;
}
.product_content h3:last-child {margin-bottom: 0;}
.product:hover .product_content {
  border-color: #a9aaab;
  background-color: var(--primary);
}
/* Our Product Section */
.tab_system {
  margin-top: -40px;
}
#main-tabs {
  position: relative;
  justify-content: space-between;
  background-color: #f5f5f5;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  padding: 15px;
  margin-bottom: 60px;
  border-bottom: 1px solid #f5f5f5;
}
#main-tabs .tab {
  color: var(--black);
  padding:  0;
  border: 5px solid transparent;
  transition: all 0.25s;
  position: relative;
}
#main-tabs .tab::before {
  content: "";
  position: absolute;
  width: 0;
  height: 6px;
  background-color: var(--primary);
  left: 0;
  bottom: -10px;
  transition:  all 0.25s;
  z-index: 1;
}
#main-tabs .tab:hover::before,
#main-tabs .tab.active::before {
  width: 100%;
} 
.line {
  position: absolute;
  left: 35px;
  bottom: 12px;
  height: 2px;
  width: calc(100% - 71px);
  background-color: #787f84;
  z-index: 0;
}
#trauma-subtabs {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
#trauma-subtabs .tab {
  position: relative;
}
#trauma-subtabs .tab::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: var(--black);
}
#trauma-subtabs .tab:hover::before,
#trauma-subtabs .tab.active::before {
  background-color: var(--primary);
}
#bone-locking-inner-tabs {
  justify-content: center;
}
#bone-locking-inner-tabs .tab {
  background-color: #a9aaab;
  color: var(--white);
  padding: 10px;
}
#bone-locking-inner-tabs .tab:hover,
#bone-locking-inner-tabs .tab.active {
  background-color: var(--primary);
  color: var(--white);
}
.product-grid {
  justify-content: center;
  margin-top: 50px;
}

@media (max-width: 1600px) {
  #trauma-subtabs,
  #main-tabs {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .line {
    position: absolute;
    left: 50px;
    bottom: 12px;
    height: 2px;
    width: calc(100% - 100px);
    background-color: #787f84;
    z-index: 0;
  }
  .product .fit_icon {
    height: 280px;
}
.product_content {
  height: calc(100% - 280px);
}
#trauma-subtabs,
#main-tabs {
  margin-bottom: 40px;
}
}
@media (max-width: 991px) {
  #main-tabs {justify-content: center;}
  #main-tabs .tab {margin: 0;}
  .line {
    position: absolute;
    left: 25px;
    bottom: 12px;
    height: 2px;
    width: calc(100% - 50px);
    background-color: #787f84;
    z-index: 0;
  }
  .product .fit_icon {
    height: 250px;
}
.product_content {
  padding: 15px;
  height: calc(100% - 250px);
}
#bone-locking-inner-tabs .tab {margin: 0;}
#trauma-subtabs,
#main-tabs {
  margin-bottom: 30px;
}
#main-tabs .tab::before {height: 4px;}
}
@media (max-width: 767px) {
  .product .fit_icon {
    height: 220px;
}
.product_content {
  height: calc(100% - 220px);
}
}
@media (max-width: 575px) {
  .tab_system {
    margin-top: -20px;
  }

  .line {
    position: absolute;
    left: 30px;
    bottom: 12px;
    height: 2px;
    width: calc(100% - 60px);
    background-color: #787f84;
    z-index: 0;
  }
  #trauma-subtabs .tab {
    text-align: center;
    padding: 0;
  }
  .product .fit_icon {
    width: 100%;
    height: auto;
}
.product_content {
  height: auto;
  width: 100%;
}
#main-tabs .tab::before {height: 3px;}
}
/* Our Product Section
