.price {
  width: 100%;
}
.price_container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 5rem 3rem;
}
.price_content {
  width: 100%;
}
.price_content_item {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  border-bottom: 1px solid #F29400;
  padding: 4rem 0;
}
.price_content_item_top, .price_content_item_bottom {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.price_content_headline h4 {
  font-size: clamp(20px, 2.5vw, 22px);
  font-weight: 700;
}
.price_content_headline {
  width: 100%;
}
.price_content_hours {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.price_content_hours svg, .price_content_info svg {
  color: #F29400;
}
.price_content_value {
  width: 100%;
}
.price_content_info, .price_content_hours {
  width: 100%;
  max-width: 500;
}
.price_content_hours h3 {
  font-size:  clamp(16px, 2.5vw, 20px);
}
.price_content_info p {
  font-size: clamp(16px, 2.5vw, 20px);
}
.price_content_value p {
  font-size: 20px;
}
.price_content_info {
  display: flex;
  gap: 0.5rem;
}
@media screen and (max-width: 800px) {
  .price_container {
    padding: 2rem 1rem;
  }
  .price_content_item {
    padding: 3rem 0;
  }
  .price_content_item_top {
    gap: 1rem;
    flex-direction: column;
  }
  .price_content_hours {
    display: flex;
    justify-content: flex-start;
    padding-left: 23%;
  }
  .price_content_value {
    margin-top: 0;
    width: 30%;
  }
  .price_content_value.price_margin_top {
   margin-top: -2.7rem;
  } 
}
