.product_Details_Section {
  width: 80%;
  margin: 10vh auto;
}
hr.product_Details_Section {
  border-top: 1px solid black;
}
/* Button */
.Quick_Links {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
}
.Quick_Links > * {
  margin: 0 7px 0 0; /* Adjust the margin value as needed */
}
.Quick_Links .btn {
  background-color: rgba(0, 0, 255, 0.849);
  border: 1px solid rgba(0, 0, 255, 0.849);
  padding: 4px 12px;
  margin: 0 1vw;
  transition: ease-in-out;
  transition: 0.3s;
  margin-bottom: 1vh;
}

.Quick_Links .btn h6 {
  font-size: small;
  color: white;
  text-align: center;
  transition: ease-in-out;
  transition: 0.3s;
}

.Quick_Links .btn:hover {
  background-color: transparent;
  scale: 1.05;
}

.Quick_Links .btn:hover h6 {
  color: rgba(0, 0, 255, 0.767);
}

.product_Info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* product_Img STYLE */
.product_Info .product_Img {
  height: 60vh;
  width: 40%;
  padding: 0 4vw 0;
  transition: ease-in-out;
  transition: 0.3s;
}
.product_Info .product_Img :hover {
  scale: 1.1;
  cursor: pointer;
  transition: ease-in-out;
  transition: 0.3s;
}
.product_Info .product_Img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: ease-in-out;
  transition: 0.3s;
}

/* product_Details STYLE */
.product_Info .product_Details {
  width: 60%;
  align-self: self-start;
  padding: 0 2vw;
}
.product_Details .title {
  font-size: 3rem;
  color: black;
  font-weight: 500;
}

/* product_Sub_Catagory */
.product_Sub_Catagory {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 6vh 0;
}
/* sub_Catagory_Card */
.product_Sub_Catagory .sub_Catagory_Card {
  width: 25%;
  height: auto;
  padding: 0 1vw;
}
.sub_Catagory_Card article {
  padding: 1vh 1vw;
  border-radius: 30px 0 30px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* sub_Catagory_Img */
.product_Sub_Catagory .sub_Catagory_Card .sub_Catagory_Img {
  width: 100%;
  height: 25vh;
  transition: ease-in-out;
  transition: 0.3s;
}
.product_Sub_Catagory .sub_Catagory_Card .sub_Catagory_Img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: ease-in-out;
  transition: 0.3s;
}
.product_Sub_Catagory .sub_Catagory_Card .sub_Catagory_Img :hover {
  scale: 0.9;
  cursor: pointer;
  transition: ease-in-out;
  transition: 0.3s;
}
/* sub_Catagory_Details */
.product_Sub_Catagory .sub_Catagory_Card .title {
  font-size: 1.5rem;
  color: black;
  line-height: 200%;
}
.product_Sub_Catagory .sub_Catagory_Card .content {
  font-size: x-small;
  line-height: 150%;
}
/* Media Queary */
@media (max-width: 950px) {
  .product_Details_Section {
    width: 95%;
  }
}
@media (max-width: 858px) {
  /* product_Details STYLE */
  .product_Details .title {
    font-size: 2.3rem;
  }
  .product_Details .content {
    font-size: smaller;
  }
}
@media (max-width: 700px) {
  /* product_Img STYLE */
  .product_Info .product_Img {
    height: 40vh;
    width: 100%;
  }

  /* product_Details STYLE */
  .product_Info .product_Details {
    width: 100%;
    align-self: self-start;
    padding: 0 4vw 0;
  }
}
@media (max-width: 500px) {
  /* product_Img STYLE */
  .product_Info .product_Img {
    height: 35vh;
    width: 100%;
  }

  /* product_Details STYLE */
  .product_Details .title {
    font-size: 2rem;
  }
  .product_Details .content {
    font-size: small;
  }
}
@media (max-width: 450px) {
  /* product_Img STYLE */
  .product_Info .product_Img {
    height: 40vh;
    width: 100%;
  }

  /* product_Details STYLE */
  .product_Details .title {
    font-size: 1.8rem;
  }
  .product_Details .content {
    font-size: x-small;
  }
}

/* sub_Catagory_Card */
@media (max-width: 970px) {
  /* sub_Catagory_Details */
  .product_Sub_Catagory .sub_Catagory_Card .title {
    font-size: 1.2rem;
    color: black;
  }
  .product_Sub_Catagory .sub_Catagory_Card .content {
    font-size: x-small;
  }
}
@media (max-width: 860px) {
  /* sub_Catagory_Card */
  .product_Sub_Catagory .sub_Catagory_Card {
    width: 33.3%;
    margin: 3vh 0;
  }
}
@media (max-width: 630px) {
  /* sub_Catagory_Card */
  .product_Sub_Catagory .sub_Catagory_Card {
    width: 40%;
    margin: 3vh 0;
  }
  /* Button */
  .Quick_Links .btn {
    padding: 1px 7px;
    margin: 0 1vw;
  }
  .Quick_Links .btn h6 {
    font-size: x-small;
  }
}
@media (max-width: 630px) {
  /* sub_Catagory_Card */
  .product_Sub_Catagory .sub_Catagory_Card {
    width: 45%;
    margin: 3vh 0;
  }
}
@media (max-width: 530px) {
  .product_Sub_Catagory .sub_Catagory_Card .sub_Catagory_Img {
    height: 16vh;
  }
  /* sub_Catagory_Card */
  .product_Sub_Catagory .sub_Catagory_Card {
    width: 47%;
    margin: 3vh 0;
  }
  /* sub_Catagory_Details */
  .product_Sub_Catagory .sub_Catagory_Card .title {
    font-size: 1rem;
    color: black;
  }
  .product_Sub_Catagory .sub_Catagory_Card .content {
    font-size: 0.5rem;
  }
}

@media (max-width: 530px) {
  /* Button */
  .Quick_Links > * {
    margin: 7px 7px 7px 0; /* Adjust the margin value as needed */
  }
}
