﻿@charset "UTF-8";
/* For debug only */

.content-products {
  padding: 50px 0;
  margin-bottom: 0;
  overflow: hidden;
}

.tabs {
  /* Step 1: Enable Flex on the container */
  display: flex;
  /* Step 2: Enable flex-wrap to put content section below tab label */
  flex-wrap: wrap;
}

.tabs > section {
  /* Step 3: Move content <section> to the end, after the tab labels */
  order: 999;
  /* Step 4: Make sure the content <section> is 100% width */
  width: 100%;
  /* Step 5: Hide all content <section> by default */
  display: none;
}

.tabs > input {
  /* display: none; Don’t use display:none. Bad for accessibility */
  /* Step 6: Hide the radio inputs */
  opacity: 0;
  /* Step 7: Make sure the radio inputs don’t take up space in layout */
  position: absolute;
}

/* Step 8: Select the label right next to the selected input */
.tabs > input[type="radio"]:checked + label {
  /* Step 9: Highlight the selected label */
  background: yellow;
}

/* Step 10: Select the section right next to the label which is next to the selected input */
.tabs > input[type="radio"]:checked + label + section {
  /* Step 11: Unset the 'display:none' we did in step 5 */
  display: unset;
}

/* Done. Make sure to disable the debug code at the beginning of CSS. And now it is time to make the tabs look good */
/* Make the tabs look good */
/* Final Step: Make the tabs pretty with padding and colors */
.tabs > label {
  padding: 60px 10px;
  background: #f4f4f4;
  border-right: 1px solid #d7d7d7;
  width: 25%;
  text-align: center;
  text-transform: capitalize;
}
@media only screen and (max-width: 768px) {
  .tabs > label {
    padding: 15px 10px;
    min-width: 25%;
  }
}
@media only screen and (max-width: 650px) {
  .tabs > label {
    min-width: 50%;
  }
}
.tabs > label:last-of-type {
  border-right: none;
}

.tabs > input[type="radio"]:checked + label {
  background: #0083ca;
  color: #ffffff;
}

.tabs section {
  /*padding: 1em;*/
  /*background-color: #0083ca;*/
}

.content-white {
  /*background-color:#FFFFFF;*/
  padding: 0px;
}

.category-wrapper {
  position: relative;
  padding: 15px 0 0 15px;
  margin-bottom: 60px;
  border-left: 35px solid #0083ca;
  border-top: 35px solid #0083ca;
}

.category-wrapper-img {
  height: 400px;
  object-fit: cover;
  margin-bottom: 15px;
}

.category-wrapper::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -35px;
  height: 60px;
  width: 20%;
  background-color: #0083ca;
}

.category-wrapper::after {
  content: "";
  position: absolute;
  width: calc(100% + 150px);
  height: 45%;
  left: 0;
  top: 20%;
  background-color: #f4f4f4;
  z-index: -1;
}

.category-wrapper .category-title {
  position: absolute;
  top: 10px;
  left: -8%;
  max-width: 100%;
  z-index: 1;
}

.category-wrapper .category-title .title-pro {
  font-size: 32px;
  line-height: 36px;
  padding: 12px 40px;
  background-color: #474647;
  color: #ffffff;
  text-transform: capitalize;
}

.category-wrapper .category-title .title-pro::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 7px;
  left: 0;
  bottom: -5px;
  background-color: #0083ca;
}

.div-products {
  margin-top: 130px;
}

.box-all {
  background-color: #00a8e4;
  width: 217px;
  height: 215px;
  position: relative;
  margin: 2px;
}

.box-all img {
  margin: auto auto 0px auto;
  width: 217px;
  height: 215px;
  object-fit: contain;
  position: absolute;
  left: 0;
  right: 0;
}

.box-text {
  height: 52px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  background-color: rgb(255 255 255 / 87%);
  position: absolute;
  bottom: 0px;
  padding: 10px 10px;
}
