.prd_card {
  background-color: blue;
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.prd_img_h2_p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.prd_h2_p {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.prd_h2_p h2,
.prd_h3_mob {
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prd_h2_p p,
.prd_shr_p_mob {
  margin: 15px;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.53);
  text-align: center;
  display: flex;
  justify-content: center;
}

.prd_h4_mob_desk {
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  width: 80%;
  background-color: rgba(0, 0, 0, 0.54);
  display: flex;
  justify-content: center;
}

.prd_cont_p_mob_desk {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.39);
  text-align: left;
}

.prd_card_spec {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 10px;
  margin: 5px 0;
  border-radius: 5px;
  background-color: rgb(14, 12, 97);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 10px;
}

.prd_card_spec .prd_each {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 7.5px;
  background-color: blue;
  border-radius: 5px;
  word-break: break-word;
  box-sizing: border-box;
}

.prd_shr_p_mob {
  display: none;
}
.prd_h3_mob {
  display: none;
}
.prd_h2_desk,
.prd_shr_p_desk {
  display: flex;
}

.prd_card_spec div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 7.5px;
  border-radius: 5px;
  background-color: blue;
  gap: 25px;
}
.prd_each h4 {
  font-weight: 700;
}
.prd_each h4,
.prd_each p {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

@media (max-width: 728px) {
  .prd_h2_desk,
  .prd_shr_p_desk,
  .prd_h2_p {
    display: none;
  }
  .prd_h3_mob,
  .prd_shr_p_mob {
    display: flex;
  }
  .prd_img_h2_p img {
    width: 100%;
  }
}
@media (max-width: 380px) {
  .prd_card_spec {
    display: flex;
    flex-direction: column;
  }
}
