@charset "UTF-8";
/* global */
@view-transition {
  navigation: auto;
  types: slide;
}
@keyframes move-out {
  50% {
    translate: 0 5lvh;
    opacity: 0;
  }
  to {
    translate: 0 5lvh;
    opacity: 0;
  }
}
@keyframes move-in {
  from {
    translate: 0 -5lvh;
    opacity: 0;
  }
  50% {
    translate: 0 -5lvh;
    opacity: 0;
  }
}
html:active-view-transition-type(slide) nav {
  view-transition-name: nav;
}
html:active-view-transition-type(slide) main {
  view-transition-name: main;
}
html:active-view-transition-type(slide) footer {
  view-transition-name: footer;
}
html:active-view-transition-type(slide)::view-transition-old(main), html:active-view-transition-type(slide)::view-transition-old(footer) {
  animation: 0.3s ease-in both move-out;
}
html:active-view-transition-type(slide)::view-transition-new(main), html:active-view-transition-type(slide)::view-transition-new(footer) {
  animation: 0.3s ease-in both move-in;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Firava";
  letter-spacing: 0.01em;
  font-variant-ligatures: common-ligatures discretionary-ligatures contextual;
  font-variant-numeric: oldstyle-nums proportional-nums;
  font-weight: 400;
  font-size: clamp(1.125rem, 0.462vw + 1.005rem, 1.375rem);
  line-height: 1.5;
}

html, body {
  padding: 0;
  margin: 0;
}

main, footer {
  max-width: min(50rem, 100svw);
  margin: 0 auto 0 auto;
  padding: 0 2rem 0 2rem;
  container-type: inline-size;
}

main {
  margin-top: 2rem;
}

h2 {
  font-family: "Merriweather";
  letter-spacing: 0.03em;
  font-weight: 800;
  font-style: normal;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

a {
  color: inherit;
  transition: text-decoration-thickness 0.3s, text-underline-offset 0.3s;
  text-decoration: underline;
  text-decoration-line: underline;
  text-decoration-thickness: 0.15em;
  text-underline-offset: 0.05em;
  text-underline-position: under;
  text-decoration-skip-ink: none;
}
a:hover {
  text-underline-offset: -0.2em;
}
a:nth-of-type(4n+0) {
  text-decoration-color: rgba(244, 202, 0, 0.4352941176);
}
a:nth-of-type(4n+1) {
  text-decoration-color: rgba(201, 0, 0, 0.4196078431);
}
a:nth-of-type(4n+2) {
  text-decoration-color: rgba(0, 143, 192, 0.6705882353);
}
a:nth-of-type(4n+3) {
  text-decoration-color: rgba(242, 157, 0, 0.6039215686);
}

/* nav */
nav {
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100vw;
  margin: 0;
  padding: 0.3rem 1rem 0 1rem;
  box-shadow: 0 0 30px 0px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
}
nav a {
  text-decoration: none;
}
nav img {
  width: 1.2rem;
  margin: 0;
  padding: 0;
}
nav > ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;
  list-style: none;
  padding: 0;
  margin: 0;
}
nav > ul > li {
  padding: 0.5rem;
  margin: 0;
}
nav > ul > li.switch-language img {
  height: 0.9em;
  width: auto;
  transform: translateY(0.1em);
}
nav > input[type=checkbox] {
  display: none;
}
nav > label {
  display: none;
  user-select: none;
  padding: 0.5rem 2rem 0.5rem 2rem;
  margin: 0;
}
nav > label > span {
  font-size: 2rem;
  padding: 0;
  margin: 0;
  display: inline-block;
}

@media (max-width: 70rem) {
  nav {
    top: auto;
    bottom: 0;
    padding: 0;
    box-shadow: none;
    background: none;
    backdrop-filter: none;
  }
  nav > ul > li:nth-child(1) {
    display: none;
  }
  nav > ul > li {
    opacity: 0;
    transition: opacity 0.3s;
  }
  nav > ul {
    padding-top: 1rem;
    padding-left: 1.5rem;
    position: fixed;
    bottom: 3.4rem;
    left: 0;
    right: 0;
    flex-direction: column;
    box-shadow: 0 -60px 30px -60px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    transform-origin: bottom left;
    transform: scaleY(0);
    transition: transform 0.3s 0.3s;
  }
  nav > label {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
  }
  nav > label > span > svg {
    width: 1rem;
    height: 1rem;
  }
  nav > label > span > svg > line {
    transition: transform 0.3s;
    transform-box: fill-box;
    transform-origin: center left;
  }
  nav > label > span > svg > line:nth-child(2) {
    transform-origin: center center;
  }
  nav > label > img {
    transition: transform 0.3s;
  }
  nav > input[type=checkbox]:checked ~ ul {
    transform: scaleY(1);
    transition: transform 0.3s;
  }
  nav > input[type=checkbox]:checked ~ ul > li {
    opacity: 1;
    transition: opacity 0.3s 0.3s;
  }
  nav > input[type=checkbox]:checked ~ label > img {
    transform: rotate(-180deg);
  }
  nav > input[type=checkbox]:checked ~ label > span > svg > line:nth-child(1) {
    transform: rotate(45deg) scale(1.414, 1);
  }
  nav > input[type=checkbox]:checked ~ label > span > svg > line:nth-child(2) {
    transform: scale(0, 1);
  }
  nav > input[type=checkbox]:checked ~ label > span > svg > line:nth-child(3) {
    transform: rotate(-45deg) scale(1.414, 1);
  }
}
/* footer */
footer {
  font-size: 0.77em;
  margin-top: 10rem;
  margin-bottom: 5rem;
}
footer > .address_grid {
  display: grid;
  grid-template-columns: max-content 1fr;
  margin: 1rem auto 1rem auto;
  padding-left: 5rem;
  column-gap: 0.4rem;
}
footer > .address_grid > * {
  grid-column-start: 2;
}
footer > .address_grid > *:nth-child(1) {
  grid-column-start: 1;
}
footer > .address_grid > *:nth-child(2n) {
  margin-bottom: 0.5rem;
}
@media (max-width: 25rem) {
  footer > .address_grid {
    padding-left: 2rem;
    column-gap: 0;
  }
  footer > .address_grid > div:nth-child(1) {
    display: none;
  }
}

/* main */
header {
  margin: 5rem auto 0 auto;
  padding: 0 2rem 0 2rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  max-width: 100%;
  gap: 1rem;
}
header > h1 {
  letter-spacing: 0;
  font-weight: 250;
  font-size: 2rem;
  margin: 0;
  padding: 0;
  align-self: center;
  flex-shrink: 1;
  overflow-wrap: break-word;
  max-width: 100%;
}
header > div {
  margin: 0;
  padding: 0;
  flex-basis: 20rem;
  flex-shrink: 2;
  height: auto;
  aspect-ratio: 0.85;
}
header > div > img {
  width: 100%;
  height: auto;
}

em {
  font-family: "Merriweather";
  letter-spacing: 0.03em;
  font-weight: 800;
  font-style: normal;
}

p {
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
}
@media (max-width: 40rem) {
  p {
    text-align: start;
  }
}

main > p.capstart::first-letter {
  font-family: "Merriweather";
  letter-spacing: 0.03em;
  font-weight: 800;
  font-style: normal;
  font-size: 3.2em;
  line-height: 0.75em;
  padding-top: 0.1em;
  float: left;
}
main > p.capstart:nth-of-type(4n+0)::first-letter {
  color: rgba(244, 202, 0, 0.4352941176);
}
main > p.capstart:nth-of-type(4n+1)::first-letter {
  color: rgba(201, 0, 0, 0.4196078431);
}
main > p.capstart:nth-of-type(4n+2)::first-letter {
  color: rgba(0, 143, 192, 0.6705882353);
}
main > p.capstart:nth-of-type(4n+3)::first-letter {
  color: rgba(242, 157, 0, 0.6039215686);
}

/* form */
form input, form textarea, form button, form label {
  font-family: inherit;
  letter-spacing: inherit;
  font-variant-ligatures: inherit;
  font-variant-numeric: inherit;
  font-weight: inherit;
  font-size: inherit;
  margin-top: 5px;
  padding: 5px;
  border-radius: 5px;
  border: 2px solid;
}
form input, form textarea {
  border-color: rgb(230, 230, 230) rgb(245, 245, 245) rgb(245, 245, 245) rgb(230, 230, 230);
  box-shadow: inset 0 0 30px 0 rgba(0, 0, 0, 0.03);
  background: rgb(250, 250, 250);
}
form button {
  border-color: rgb(230, 230, 230) rgb(200, 200, 200) rgb(200, 200, 200) rgb(230, 230, 230);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.03);
  background: rgb(240, 240, 240);
}
form label {
  padding-left: 0;
  padding-right: 0;
  border-color: rgba(255, 255, 255, 0);
}
form > div {
  display: flex;
  flex-flow: row wrap;
}
form > div > * {
  display: inline-block;
}
form > div > *:first-child {
  flex-grow: 0;
  width: 8rem;
}
form > div > *:nth-child(n+2) {
  flex-grow: 10;
  width: 12rem;
}
form > div > ul.errorlist {
  list-style-type: none;
  margin: 5px 0 0 0;
  padding: 5px;
  border-radius: 5px;
  border: 2px solid rgba(201, 0, 0, 0.4196078431);
}
form > div > ul.errorlist > li {
  padding: 0;
  margin: 0;
}

#map {
  width: 100%;
  height: 75cqi;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 0;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}
#map .refresh-button svg {
  padding-top: 0.3em;
}

.threeimgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3%;
}
.threeimgs > img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.threeimgs:nth-child(n+2 of .threeimgs) {
  display: none;
}
@container (max-width: 40rem) {
  .threeimgs {
    grid-template-columns: 1fr;
  }
  .threeimgs:nth-child(n+2 of .threeimgs) {
    display: block;
  }
  .threeimgs:nth-child(1 of .threeimgs) > img:nth-child(n+2) {
    display: none;
  }
  .threeimgs:nth-child(2 of .threeimgs) > img:nth-child(2n+1) {
    display: none;
  }
  .threeimgs:nth-child(3 of .threeimgs) > img:nth-child(-n+2) {
    display: none;
  }
}

ul {
  list-style-type: "—";
  padding-left: 3em;
}
ul li {
  padding-left: 0.5em;
}

.blockquotediv {
  margin: 2rem 0 2rem 0;
}
.blockquotediv:nth-of-type(4n+0) hr {
  border-color: rgba(244, 202, 0, 0.4352941176);
}
.blockquotediv:nth-of-type(4n+1) hr {
  border-color: rgba(201, 0, 0, 0.4196078431);
}
.blockquotediv:nth-of-type(4n+2) hr {
  border-color: rgba(0, 143, 192, 0.6705882353);
}
.blockquotediv:nth-of-type(4n+3) hr {
  border-color: rgba(242, 157, 0, 0.6039215686);
}
.blockquotediv:nth-of-type(4n+0) hr {
  color: rgba(244, 202, 0, 0.4352941176);
}
.blockquotediv:nth-of-type(4n+0) blockquote::before {
  color: rgba(244, 202, 0, 0.4352941176);
}
.blockquotediv:nth-of-type(4n+0) blockquote::after {
  color: rgba(244, 202, 0, 0.4352941176);
}
.blockquotediv:nth-of-type(4n+1) hr {
  color: rgba(201, 0, 0, 0.4196078431);
}
.blockquotediv:nth-of-type(4n+1) blockquote::before {
  color: rgba(201, 0, 0, 0.4196078431);
}
.blockquotediv:nth-of-type(4n+1) blockquote::after {
  color: rgba(201, 0, 0, 0.4196078431);
}
.blockquotediv:nth-of-type(4n+2) hr {
  color: rgba(0, 143, 192, 0.6705882353);
}
.blockquotediv:nth-of-type(4n+2) blockquote::before {
  color: rgba(0, 143, 192, 0.6705882353);
}
.blockquotediv:nth-of-type(4n+2) blockquote::after {
  color: rgba(0, 143, 192, 0.6705882353);
}
.blockquotediv:nth-of-type(4n+3) hr {
  color: rgba(242, 157, 0, 0.6039215686);
}
.blockquotediv:nth-of-type(4n+3) blockquote::before {
  color: rgba(242, 157, 0, 0.6039215686);
}
.blockquotediv:nth-of-type(4n+3) blockquote::after {
  color: rgba(242, 157, 0, 0.6039215686);
}
.blockquotediv hr {
  border: none;
  border-top: thin double;
  text-align: center;
  overflow: visible;
  height: 0;
}
.blockquotediv hr::after {
  background: white;
  position: relative;
  top: -0.7em;
  padding: 5px;
}
.blockquotediv:nth-of-type(4n+0) > hr::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 128 128'%3E%3Cpath fill='rgba(244, 202, 0, 0.4352941176)' d='M20.79 126.61V96.9h-6.38C5.98 96.9.95 91.86.95 83.43V14.01C.95 6.94 6.86 1.4 14.41 1.4h99.18c7.67 0 13.46 5.42 13.46 12.61v69.43c0 8.18-5.28 13.47-13.46 13.47H51z'/%3E%3Cpath fill='%23fff' d='M14.41 8.48c-3.17 0-6.37 1.9-6.37 5.52v69.43c0 4.53 1.85 6.37 6.37 6.37h13.47v19.88L48.1 89.81h65.49c4.29 0 6.37-2.09 6.37-6.37V14.01c0-3.62-3.2-5.52-6.37-5.52H14.41z'/%3E%3C/svg%3E");
}
.blockquotediv:nth-of-type(4n+1) > hr::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 128 128'%3E%3Cpath fill='rgba(201, 0, 0, 0.4196078431)' d='M20.79 126.61V96.9h-6.38C5.98 96.9.95 91.86.95 83.43V14.01C.95 6.94 6.86 1.4 14.41 1.4h99.18c7.67 0 13.46 5.42 13.46 12.61v69.43c0 8.18-5.28 13.47-13.46 13.47H51z'/%3E%3Cpath fill='%23fff' d='M14.41 8.48c-3.17 0-6.37 1.9-6.37 5.52v69.43c0 4.53 1.85 6.37 6.37 6.37h13.47v19.88L48.1 89.81h65.49c4.29 0 6.37-2.09 6.37-6.37V14.01c0-3.62-3.2-5.52-6.37-5.52H14.41z'/%3E%3C/svg%3E");
}
.blockquotediv:nth-of-type(4n+2) > hr::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 128 128'%3E%3Cpath fill='rgba(0, 143, 192, 0.6705882353)' d='M20.79 126.61V96.9h-6.38C5.98 96.9.95 91.86.95 83.43V14.01C.95 6.94 6.86 1.4 14.41 1.4h99.18c7.67 0 13.46 5.42 13.46 12.61v69.43c0 8.18-5.28 13.47-13.46 13.47H51z'/%3E%3Cpath fill='%23fff' d='M14.41 8.48c-3.17 0-6.37 1.9-6.37 5.52v69.43c0 4.53 1.85 6.37 6.37 6.37h13.47v19.88L48.1 89.81h65.49c4.29 0 6.37-2.09 6.37-6.37V14.01c0-3.62-3.2-5.52-6.37-5.52H14.41z'/%3E%3C/svg%3E");
}
.blockquotediv:nth-of-type(4n+3) > hr::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 128 128'%3E%3Cpath fill='rgba(242, 157, 0, 0.6039215686)' d='M20.79 126.61V96.9h-6.38C5.98 96.9.95 91.86.95 83.43V14.01C.95 6.94 6.86 1.4 14.41 1.4h99.18c7.67 0 13.46 5.42 13.46 12.61v69.43c0 8.18-5.28 13.47-13.46 13.47H51z'/%3E%3Cpath fill='%23fff' d='M14.41 8.48c-3.17 0-6.37 1.9-6.37 5.52v69.43c0 4.53 1.85 6.37 6.37 6.37h13.47v19.88L48.1 89.81h65.49c4.29 0 6.37-2.09 6.37-6.37V14.01c0-3.62-3.2-5.52-6.37-5.52H14.41z'/%3E%3C/svg%3E");
}
.blockquotediv > p {
  text-align: right;
  margin-bottom: 0;
}
.blockquotediv blockquote {
  position: relative;
  margin: 0 1rem 0 1rem;
}
.blockquotediv blockquote p {
  margin: 0;
  padding: 0;
}
.blockquotediv blockquote p:last-of-type {
  display: inline;
}
.blockquotediv blockquote::before {
  position: absolute;
  left: -0.8em;
  content: open-quote;
  font-family: "Merriweather";
  letter-spacing: 0.03em;
  font-weight: 800;
  font-style: normal;
}
.blockquotediv blockquote::after {
  content: close-quote;
  font-family: "Merriweather";
  letter-spacing: 0.03em;
  font-weight: 800;
  font-style: normal;
}

/*# sourceMappingURL=hebamme_laurentia.css.map */
