/* Google Fonts Import Link */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: #00bc8b;
  --secondary-color: #f3be00;
  --accent-color: #ff5252;
  --blue: #037bff;
  --white: #fff;
  --black: #000;
  --primary-font: "Poppins";
}

/* Product Fire Page start */

.product_service_wrapper {
  padding: 0px 30px 0px 45px;
}

/* Product Hero Start */

/* Product Fire Page Tab Start */

.product_fire_head h4 {
  font-size: 1.6em;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
  font-family: var(--primary-font);
}

.product_tabs {
  max-width: 1300px;
}

.product_tabs .nav-item {
  margin-top: 15px;
}

.nav-item .nav-link {
  position: relative;
  color: var(--blue) !important;
  font-family: var(--primary-font) !important;
  font-weight: 500 !important;
  margin-right: 0;
  padding-right: 20px;
  font-size: 1em;
  border-radius: 0 !important;
  border: none !important;
  clip-path: polygon(0% 0%, 90% 0, 95% 51%, 100% 100%, 0% 100%) !important;
  z-index: 0;
}

.border {
  position: absolute;
  top: 1px;
  left: 1px;
  right: 0px;
  bottom: 1px;
  clip-path: polygon(0% 0%, 90% 0, 95% 51%, 100% 100%, 0% 100%) !important;
  z-index: 1;
}

.nav-item .nav-link.active {
  background-color: #144492 !important;
  color: var(--white) !important;
  clip-path: polygon(0% 0%, 90% 0, 95% 51%, 100% 100%, 0% 100%) !important;
}

@media screen and (max-width: 1570px) {
  .product_tabs {
    max-width: 1100px;
  }

  .nav-item .nav-link {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 1400px) {
  .product_tabs {
    max-width: 1000px;
  }

  .nav-item .nav-link {
    font-size: 0.7em;
  }
}

/* Product Fire Page Tab End */

/* related product start */

#related_product {
  margin-top: 20px;
}

.related_product_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.related_product_head h3 {
  font-size: 1.1em;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  font-family: var(--primary-font);
}

.related_product_head_btn a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.8);
  font-family: var(--primary-font);
  font-size: 1em;
}

.related_product_head_btn a i {
  color: rgba(0, 0, 0, 0.8);
  margin-left: 5px;
  font-size: 1em;
}

.related_product_cards {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 30px;
}

.related_product_card_item {
  width: 300px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.related_product_card_img {
  width: 100%;
  height: 180px;
  border-radius: 8px;
}

.related_product_card_img img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

.related_product_card_rating {
  margin: 30px 0 20px;
}

.related_product_card_rating a {
  text-decoration: none;
  font-size: 1em;
}

.related_product_card_rating a i {
  color: #f3be00;
}

.related_product_card_desc {
  display: flex;
  align-items: center;
}

.related_product_card_desc_img {
  width: 113px;
  height: 39px;
  border-radius: 5px;
}

.related_product_card_desc_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* border-radius: 5px; */
}

.related_product_card_desc_content p {
  margin-bottom: 0;
  margin-left: 10px;
  font-family: var(--primary-font);
  font-size: 0.9em;
  font-weight: 500;
}

.related_product_card_price {
  font-size: 1.2em;
  color: var(--black);
  font-weight: 600;
  font-family: var(--primary-font);
  margin-top: 20px;
}

.related_product_card_price span:last-child {
  color: rgba(0, 0, 0, 0.5);
  text-decoration: line-through;
  margin-left: 10px;
}

.related_product_card_wrapper {
  overflow-x: scroll;
}

.related_product_card_wrapper::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

.related_product_card_wrapper::-webkit-scrollbar-track {
  background-color: #fff;
  outline: 1px solid #d9d9d9;
  outline-offset: 2px;
  border-radius: 30px;
}
.related_product_card_wrapper::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 30px;
}

.product_service {
  padding: 30px 0;
}

.product_service_head p {
  margin-bottom: 0;
  font-family: var(--primary-font);
  font-size: 1.1em;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 600;
}

.product_service_card {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 25px;
}

.product_service_card img {
  width: 100%;
  height: 100%;
}

.product_service_card .service_card_desc {
  position: absolute;
  bottom: 10px;
  left: 10px;
  max-width: 70%;
  background-color: #144492;
  padding: 5px 8px;
  border-radius: 5px;
  opacity: 1;
  pointer-events: all;
  user-select: auto;
  transition: all 0.5s ease-in-out;
}

.product_service_card:hover .service_card_desc {
  opacity: 0;
  pointer-events: none;
  user-select: none;
}

.service_card_desc p {
  margin-bottom: 0;
  font-family: var(--primary-font);
  color: var(--white);
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 400;
}

.product_service_card .service_card_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  background: rgba(5, 126, 255, 0.7);
  opacity: 0;
  pointer-events: none;
  user-select: none;
  transition: all 0.5s ease-in-out;
}

.product_service_card:hover .service_card_overlay {
  opacity: 1;
  pointer-events: all;
  user-select: auto;
}

.service_card_overlay h4 {
  font-family: var(--primary-font);
  font-size: 1.3em;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 15px;
}

.service_card_overlay p {
  font-family: var(--primary-font);
  font-size: 1em;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 0;
}

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

.product_service_btn a {
  font-family: var(--primary-font);
  font-size: 1.1em;
  text-align: center;
  display: inline-block;
  padding: 10px 35px;
  background-color: var(--blue);
  color: var(--white);
  font-weight: 400;
  border-radius: 5px;
  text-decoration: none;
}

@media screen and (max-width: 1400px) {
  .product_service_card {
    height: 250px;
  }

  .product_service_card .service_card_overlay {
    padding: 10px;
  }

  .service_card_overlay h4 {
    font-size: 1.2em;
  }
}

/* related product end */

/* procurement tab start */

#social_proc_chart {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}

.social_proc_chart_head p {
  margin-bottom: 30px;
  font-family: var(--primary-font);
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;
}

.social_proc_chart_head p span {
  color: var(--blue);
}

.social_proc_chart_box_img {
  width: 100px;
  height: 100px;
  margin: auto;
}

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

.social_proc_chart_box {
  position: relative;
}

.social_proc_chart_box p {
  text-align: center;
  font-family: var(--primary-font);
  color: var(--black);
  font-size: 1em;
  padding: 15px 0;
  margin-bottom: 0;
}

.social_proc_chart_box h4 {
  font-family: var(--primary-font);
  font-size: 1.4em;
  font-weight: 700;
  color: #ff5438;
  text-align: center;
}

.social_proc_chart_legend {
  margin-top: 20px;
  padding-left: 15px;
  position: absolute;
  top: 35%;
  right: 50px;
  transform: translateY(-35%);
}

.social_proc_chart_legend .legends {
  display: flex;
  margin-bottom: 10px;
}

.social_proc_chart_legend .legend_box {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  margin-right: 6px;
}

.social_proc_chart_legend .legends span {
  color: #878787;
  font-size: 13px;
  margin-top: -2px;
}

.social_proc_chart_legend .legend_box.color1 {
  background-color: #000091;
}
.social_proc_chart_legend .legend_box.color2 {
  background-color: #980090;
}
.social_proc_chart_legend .legend_box.color3 {
  background-color: #ff5438;
}

.product_chart_wrapper {
  position: relative !important;
}

.product_chart_labels {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.product_chart_labels h4 {
  font-size: 1.4em;
  font-family: var(--primary-font);
  color: var(--black);
  font-weight: 600;
}

@media screen and (max-width: 1800px) {
  .product_chart_labels h4 {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 1600px) {
  .product_chart_labels h4 {
    font-size: 1em;
  }
}
@media screen and (max-width: 1400px) {
  .product_chart_labels h4 {
    font-size: 0.8em;
  }
  .social_proc_chart_legend {
    right: 20px;
  }
}

/* procurement tab end */

/* Supplier Tab Start */

.features_cards {
  border-radius: 12px;
  border: 2px solid rgba(3, 123, 255, 0.7);
  background: #fff;
  padding: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin-top: 30px;
}

.features_cards_icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

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

.features_cards h4 {
  font-family: var(--primary-font);
  font-size: 1.3em;
  color: var(--blue);
  font-weight: 600;
  text-align: center;
}

.features_card_content_item {
  border-radius: 8px;
  border: 2px solid rgba(30, 39, 73, 0.4);
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin-top: 10px;
  min-height: 170px;
  padding: 10px;
}

.features_card_content_item h5 {
  color: var(--black);
  font-family: var(--primary-font);
  font-size: 1.1em;
  font-weight: 500;
  margin: 15px 0;
}

.features_card_content_item p {
  color: rgba(0, 0, 0, 0.7);
  font-family: var(--primary-font);
  font-size: 1em;
  font-weight: 500;
  display: flex;
  margin-bottom: 0;
}

.features_card_content_item p span {
  display: inline-block;
  padding-right: 5px;
}

.features_card_content_item ul {
  margin: 0;
  padding: 0;
  /* list-style-position: inside; */
  list-style: none;
}

.features_card_content_item p a {
  margin-left: 4px;
  color: var(--blue);
}

.features_card_content_item ul li {
  display: flex;
  margin-bottom: 8px;
}

.features_card_content_item ul li::before {
  content: "\2022";
  color: rgba(20, 69, 148, 0.5);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: 0em;
}

.features_card_content_item.active {
  background-color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(146, 161, 216, 0.52);
}

.features_card_content_item.active h4 {
  color: var(--white);
  text-align: center;
  font-family: var(--primary-font);
  font-size: 1.4em;
  font-weight: 500;
  line-height: 30px;
}

.features_card_content {
  height: 370px;
  overflow-y: scroll;
}

.features_card_content::-webkit-scrollbar {
  width: 5px;
}

.features_card_content::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 30px;
}
.features_card_content::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 30px;
}

@media screen and (max-width: 1560px) {
  .features_card_content_item h5 {
    font-size: 0.9em;
  }

  .features_card_content_item p {
    font-size: 0.8em;
  }
}

/* Supplier Tab End */

/* community tab start */

.comm-return-card {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-top: 30px;
}

.card-head p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.1em;
  font-weight: 600;
  text-align: left;
  margin-bottom: 30px;
}

.profit-info {
  justify-content: center;
  padding: 20px;
}

.profit-info img {
  width: 90%;
  max-width: 350px;
}

.profit-info p {
  margin-top: 15px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  font-weight: 600;
}

@media screen and (max-width: 1400px) {
  .profit-info p {
    font-size: 13px;
  }
}

/* community tab end */

/* rating and reviews tab start */

.product_review_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 0;
}

.product_review_head_name h5 {
  font-family: var(--primary-font);
  font-size: 1.3em;
  color: var(--black);
}

.product_review_head_name h5 span {
  font-size: 0.8em;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
}

.product_review_head_btn {
  display: flex;
  align-items: center;
}

.product_review_select_box {
  height: 45px;
  padding: 0 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  line-height: 45px;
  margin: 0 15px;
}

.product_review_select_box select {
  border: none;
  outline: none;
  width: 90px;
}

.product_review_head_btn button {
  border: none;
  outline: none;
  height: 45px;
  font-family: var(--primary-font);
  border-radius: 6px;
  padding: 0 15px;
}

.product_review_head_btn .filter_btn {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
}

.product_review_head_btn .filter_btn img {
  width: 18px;
}

.product_review_head_btn .review_btn {
  color: var(--white);
  font-size: 1em;
  background: var(--blue);
}

.product_reviews_cards {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 15px;
  margin: 30px 0 0;
}

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

.product_reviews_cards_rating .rating_star a {
  text-decoration: none;
  font-size: 0.9em;
}

.product_reviews_cards_rating .rating_star a i {
  color: #f3be00;
}

.product_reviews_cards_rating span i {
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.product_reviews_user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}

.reviews_user_details {
  display: flex;
  align-items: center;
}

.reviews_user_avatar {
  width: 25px;
  height: 25px;
  border-radius: 3px;
}

.reviews_user_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.reviews_user_details h5 {
  font-family: var(--primary-font);
  color: var(--black);
  font-size: 1em;
  margin: 0 6px;
}

.reviews_user_details span img {
  width: 18px;
}

.reviews_user_project h5 {
  font-family: var(--primary-font);
  color: var(--black);
  font-size: 1em;
  margin-bottom: 0;
  font-weight: 500;
}

.reviews_user_project h5 span {
  color: rgba(0, 0, 0, 0.6);
}

.product_reviews_user_comments p {
  font-family: var(--primary-font);
  color: var(--black);
  font-size: 0.9em;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}

.product_reviews_post_date p {
  font-family: var(--primary-font);
  color: var(--black);
  font-size: 0.9em;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
}

/* rating and reviews tab end */

/* un sdg tab start */

.un-sdg-goals-content {
  margin: 40px 0;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.all-step-images img {
  width: 100%;
}

/* un sdg tab end */

/* location tab start */

#product_location {
  margin-top: 30px;
}

.product_location_content {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.product_location_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

.product_location_header h4 {
  margin-bottom: 0;
  font-family: var(--primary-font);
  font-size: 1.6em;
  font-weight: 500;
  color: var(--black);
}

.product_location_brand {
  display: flex;
  align-items: center;
}

.product_location_brand .brand_logo {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  margin-right: 8px;
}

.product_location_brand .brand_logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.product_location_brand p {
  margin-bottom: 0;
  font-family: var(--primary-font);
  font-size: 1em;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 500;
}

.product_location_rating {
  display: flex;
  align-items: center;
}

.product_location_rating p {
  padding-left: 15px;
  margin-bottom: 0;
  font-family: var(--primary-font);
  font-size: 0.9em;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
}

.product_location_rating .location_rating_star {
  margin-left: 15px;
}

.product_location_rating .location_rating_star a {
  text-decoration: none;
  font-size: 0.9em;
}

.product_location_rating .location_rating_star a i {
  color: #f3be00;
}

.product_location_map {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 15px 10px;
  margin-top: 20px;
}

.product_location_map iframe {
  width: 100%;
  height: 450px;
  border-radius: 8px;
}

.product_service_area_head {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product_service_area_icon {
  width: 60px;
  height: 60px;
  border-radius: 6px;
}

.product_service_area_icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.product_service_area_head h4 {
  margin-bottom: 0;
  font-family: var(--primary-font);
  font-size: 1.4em;
  color: var(--black);
  font-weight: 500;
  margin-left: 15px;
}

.product_service_area_map {
  width: 400px;
  height: 400px;
  margin: 60px auto 0;
}

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

/* location tab end */

/* insurances tab start */

.insurance_profile_items {
  margin: 30px 0;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.insurance_profile {
  display: flex;
}

.insurance_profile_avatar {
  width: 190px;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
}

.insurance_profile_details {
  width: calc(100% - 190px);
}

.insurance_profile_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.profile_info_right_border {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.insurance_profile_name {
  padding-left: 20px;
}

.insurance_profile_name h4 {
  font-family: var(--primary-font);
  font-size: 1.4em;
  color: var(--black);
  font-weight: 600;
}

.insurance_profile_name p {
  font-family: var(--primary-font);
  font-size: 1em;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
}

.insurance_profile_info {
  padding: 0 20px;
}

.insurance_profile_info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.insurance_profile_info ul li {
  margin-bottom: 8px;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 1em;
  color: rgba(0, 0, 0, 0.6);
}

.insurance_profile_info ul li span {
  font-weight: 500;
  color: var(--black);
}

.insurance_profile_about h4 {
  font-family: var(--primary-font);
  font-size: 1.4em;
  color: var(--black);
  font-weight: 600;
}

.insurance_profile_about p {
  font-family: var(--primary-font);
  font-size: 1em;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  margin-bottom: 0;
}

@media screen and (max-width: 1500px) {
  .insurance_profile_info ul li {
    font-size: 0.8em;
  }
}

/* insurances tab end */

/* environmental tab start */

#sustainable {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}

.sustainable_chart_head p {
  text-align: center;
  font-size: 1.1em;
  color: rgba(0, 0, 0, 0.8);
  font-family: var(--primary-font);
  font-weight: 600;
  margin-bottom: 35px;
}

.sustainable_chart {
  position: relative;
}

.sustainable_chart_features {
  position: absolute;
}

.sustainable_chart_features p {
  text-align: right;
  font-size: 0.8em;
}

.sustainable_chart_features p span {
  font-weight: 700;
}

.sustainable_chart_features_content1 {
  left: 55%;
}
.sustainable_chart_features_content2 {
  right: 16%;
  top: 29%;
}
.sustainable_chart_features_content3 {
  right: 22%;
  bottom: -10px;
}
.sustainable_chart_features_content4 {
  left: 35%;
  bottom: -15px;
}
.sustainable_chart_features_content5 {
  left: 19%;
  top: 52%;
}
.sustainable_chart_features_content6 {
  left: 23%;
  top: 2%;
}

#sustainableChart {
  position: relative;
}

.sustainable_chart_content p {
  position: absolute;
  font-size: 1em;
  text-align: center;
  font-weight: 500;
  color: var(--white);
}

.sustainable_chart_content p:nth-child(1) {
  left: 50%;
  top: 23%;
}
.sustainable_chart_content p:nth-child(2) {
  right: 37%;
  top: 31%;
}
.sustainable_chart_content p:nth-child(3) {
  right: 34%;
  bottom: 32%;
}
.sustainable_chart_content p:nth-child(4) {
  left: 48%;
  bottom: 23%;
}
.sustainable_chart_content p:nth-child(5) {
  left: 37%;
  bottom: 32%;
}
.sustainable_chart_content p:nth-child(6) {
  left: 37%;
  top: 31%;
}

#sustainableChart img {
  width: 50%;
  display: block;
  margin: auto;
}

.sustainable_chart_legend {
  margin-top: 20px;
  padding-left: 15px;
}

.sustainable_chart_legend .legends {
  display: flex;
  margin-bottom: 10px;
}

.sustainable_chart_legend .legend_box {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  margin-right: 6px;
}

.sustainable_chart_legend .legends span {
  color: #878787;
  font-size: 13px;
  margin-top: -3px;
}

.sustainable_chart_legend .legend_box.color1 {
  background-color: #09775a;
}
.sustainable_chart_legend .legend_box.color2 {
  background-color: #dfaf06;
}
.sustainable_chart_legend .legend_box.color3 {
  background-color: #ff5438;
}
.sustainable_chart_legend .legend_box.color4 {
  background-color: #980090;
}

@media screen and (max-width: 1660px) {
  .sustainable_chart_content p {
    font-size: 0.8em;
  }
}

@media screen and (max-width: 1600px) {
  .sustainable_chart_features p {
    font-size: 0.6em;
  }
}

@media screen and (max-width: 1500px) {
  .sustainable_chart_content p {
    font-size: 0.7em;
  }
}

@media screen and (max-width: 1400px) {
  .sustainable_chart_content p {
    font-size: 0.6em;
  }
}

/* environmental tab end */

/* training tab start */

#local_industry {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 30px !important;
}

.workforce_items {
  display: grid;
  grid-auto-columns: 1fr;
  margin-top: 20px;
}

.workforce_item {
  grid-row: 1;
  margin-top: 20px;
}

.worforce_item_icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #878787;
  border-radius: 50%;
  margin: 0 auto 30px;
}

.worforce_item_icon.active {
  background-color: var(--blue);
}

.worforce_item_icon img {
  width: 45px;
}

.worforce_content h4 {
  font-family: var(--primary-font);
  color: var(--black);
  font-size: 1.3em;
  font-weight: 600;
  margin: 10px 0;
  text-align: center;
}

.worforce_content h4 span:first-child {
  margin-right: 20px;
}

.worforce_content h5 {
  font-family: var(--primary-font);
  color: rgba(0, 0, 0, 0.6);
  font-size: 1em;
  font-weight: 700;
  text-align: center;
}

.worforce_content h5.active {
  color: var(--blue);
}

.worforce_content p {
  font-family: var(--primary-font);
  color: rgba(0, 0, 0, 0.6);
  font-size: 1em;
  font-weight: 400;
  text-align: center;
}

/* training tab end */

/* Product Fire Page end */
