@media (min-width: 300px) {
  .section {
    min-height: 50vh;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1200px) {
  .section {
    min-height: 75vh;
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

h5 {
  font-weight: 600;
}

#wring {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#wring::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}

#wring > * {
  position: relative;
  z-index: 2;
}

#contact-topic {
  font-family: Lora, serif;
  color: #000;
  background-color: #fff;
  border: 1px solid rgba(var(--bs-primary-rgb), 0.45);
}

#contact-topic:hover, #contact-topic:focus {
  border-color: var(--bs-primary);
  box-shadow: none;
  outline: none;
}

#contact-topic option {
  font-family: Lora, serif;
  color: #fff;
  background-color: var(--bs-primary);
}

#contact-topic option:checked {
  background-color: var(--bs-primary);
  color: #fff;
}

