body {
  gap: 4rem;
  padding: 0;
}

.modal__content .photo-frame {
  width: 180px;
}

main {
  display: flex;
  flex-flow: column nowrap;
  padding: 3rem 1rem 1rem 1rem;
  width: 100%;
  max-width: 1100px;
  gap: 3rem;
  background: var(--primary);
  border-radius: 2rem;
}
main section {
  display: flex;
  flex-flow: column nowrap;
  gap: 1.75rem;
  color: var(--surface-1);
}
main section h2 {
  color: var(--surface-1);
  width: 100%;
  text-align: center;
  padding: 0 1rem;
}
main section .paragraph-wrapper {
  display: flex;
  flex-flow: column nowrap;
  gap: 1.5rem;
}
main section .paragraph-wrapper p {
  color: var(--surface-1);
}
main section .paragraph-wrapper p a {
  word-wrap: break-word;
}
main section.prices {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
main section.prices .prices__prices-wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  gap: 1.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
main section.prices .prices__prices-wrapper .price-div {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  background: var(--on-surface-1);
  border-radius: 2rem;
  padding: 0.75rem;
  gap: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 480px;
  overflow: hidden;
  position: relative;
}
main section.prices .prices__prices-wrapper .price-div header {
  display: flex;
  flex-flow: column nowrap;
  background: rgba(252, 225, 210, 0.5);
  backdrop-filter: blur(6px);
  border: solid rgba(255, 255, 255, 0.25) 0.5px;
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.25);
  padding: 1rem;
  border-radius: 1.5rem;
  gap: 0.75rem;
  z-index: 100;
}
main section.prices .prices__prices-wrapper .price-div header div {
  display: flex;
  flex-flow: row wrap;
  gap: 0.75rem;
}
main section.prices .prices__prices-wrapper .price-div header div p {
  background: rgba(129, 94, 87, 0.85);
  color: var(--surface-1);
  padding: 0.5rem 1.125rem;
  border-radius: 1rem;
}
main section.prices .prices__prices-wrapper .price-div > img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  filter: contrast(50%);
  opacity: 0.5;
}
main section.prices .prices__prices-wrapper .price-div > div {
  display: flex;
  flex-flow: column nowrap;
  padding: 1rem 0.75rem 1.5rem 0.75rem;
  z-index: 100;
}
main section.prices .prices__prices-wrapper .price-div > div p {
  color: var(--surface-1);
}
main section.prices .prices__prices-wrapper .price-div > div ul li {
  color: var(--surface-1);
}
main section.prices .prices__prices-wrapper .price-div a {
  z-index: 100;
  background: rgba(137, 86, 76, 0.85);
  backdrop-filter: blur(6px);
  border: solid rgba(255, 198, 177, 0.25) 0.5px;
  box-shadow: inset 0 0 12px rgba(255, 205, 174, 0.25);
}
main section.gift {
  background: var(--surface-1);
  color: var(--primary);
  display: flex;
  flex-flow: column;
  padding: 1.75rem 1rem 1rem 1.25rem;
  gap: 1rem;
  border-radius: 1.5rem;
}
main section.gift h2 {
  color: var(--primary);
}
main section.gift div p {
  color: var(--primary);
}
main section.gift > a {
  align-self: end;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 954px) {
  .modal__content .photo-frame {
    width: 260px;
  }
  main {
    padding: 4rem;
    gap: 3.25rem;
    border-radius: 3rem;
  }
  main section.gift {
    border-radius: 2rem;
    padding: 2.25rem;
  }
  main section.prices .prices__prices-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
    width: 100%;
  }
  main section.prices .prices__prices-wrapper .price-div {
    width: 100%;
  }
}/*# sourceMappingURL=contact.css.map */