.Category_Wrapper {
  background-color: var(--secondary);
  --card_width: 250px;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 100px;
}
.Products_Card{
  width:100%;
  height:auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.Products_Header_Wrapper{
  width: 100vw;
  height: 100px;
  margin: -25px 0 25px  0;
  font-size: clamp(1rem, 7vw, 2rem);
  text-align: center;
}

.container {
  width: var(--card_width);
  height: var(--card_width);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 10px #00000021;
  transition: 0.5s;
  /*background-color:#00c753;*/
  
}

.container:hover{
  box-shadow: 0 0 10px #00000021,0 0 20px #00000021,0 0 30px #00000021;

}

/*.container::before{*/
/*  content: "";*/
/*  position: absolute;*/
/*  width: 103%;*/
/*  height: 103%;*/
/*  border-radius: 10px;*/
/*  background-image: linear-gradient(135deg, var(--primary), transparent 50%);*/
/*  transition: 0.5s;*/
/*}*/

.Category_img_Wrapper {
  padding: 10px;
  width: var(--card_width);
  height: var(--card_width);
  border-radius: 10px;
  background-color: #fff;
  position: relative;
  background-color: var(--primary);
}

.Category_Card_image {
  object-fit: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: 0.5s;
}

.container:hover .Category_Card_image {
  border-radius: 5px 20px;
  background-color: #f1f1f1;
  border: 2px solid var(--dark_purple);
  left: -0%;
  top: -0%;
}

.TextContent {
  width: 100%;
  height: 100%;
  margin: 30% 0 0 0;
  color: #111111;
  position: absolute;
  padding: 10px;
  text-align: center;
  transition: 0.5s;
}

.Category_Card_content_header {
  font-size: 20px;
  text-transform: uppercase;
  margin: 10px;
  position: relative;
  top: 50%;
  transition: 0.5s;
}

.container:hover .Category_Card_content_header{
  top: 0;
}

.Category_Card_content_para {
  font-size: 13px;
  font-family: 'poppins';
  opacity: 0;
  transition: 0.5s;
}

.Card_Button {
  opacity: 0;
  outline: none;
  cursor: pointer;
  border: none;
  padding: 0.9rem 2rem;
  margin: 10px;
  font-family: inherit;
  font-size: inherit;
  position: relative;
  display: inline-block;
  letter-spacing: 0.05rem;
  font-weight: 700;
  font-size: 17px;
  border-radius: 500px;
  overflow: hidden;
  background: #000;
  color: #ffffff;
  transition: 0.5s;
}

.Card_Button span {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
}

.Card_Button::before,
.Card_Button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.Card_Button::before {
  content: "";
  background: var(--dark_purple);
  width: 120%;
  left: -10%;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.Card_Button:hover::before {
  transform: translate3d(100%, 0, 0);
}
