/*
Theme Name: Praxis Moserhofgasse
Theme URI: 
Author: Dennis Helbig
Author URI: https://dennishelbig.com/
Description: Personal Theme for Praxis Moserhofgasse
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom theme by Dennis Helbig
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  outline: none;
}

/* Remove excess padding and border in Firefox 4+ */
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

@font-face {
  font-family: "sans";
  src: url("fonts/sans.woff2") format("woff2"), url("fonts/sans.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "serif";
  src: url("fonts/serif.woff2") format("woff2"), url("fonts/serif.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
nav {
  height: var(--nav-height);
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.3);
  background: white;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}
nav .menu-container {
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--padding-side);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .members {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 45px;
}
nav a.sans {
  font-size: min(14px, 1.4vw);
}
nav a.serif {
  font-size: min(19px, 1.9vw);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}
nav .logo {
  pointer-events: none;
  width: 168px;
}
nav .logo svg {
  width: 100%;
  translate: 0 50%;
}

@media (max-width: 1300px) {
  .logo.desktop {
    display: none;
  }
  nav .members {
    gap: 20px;
    width: 100%;
    justify-content: space-between;
  }
}
button.burger {
  display: none;
}

@media (min-width: 767px) {
  .logo.mobile {
    display: none;
  }
}
@media (max-width: 768px) {
  button.burger {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
    aspect-ratio: 1;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
    z-index: 1002;
  }
  button.burger:before, button.burger:after {
    content: "";
    position: absolute;
    height: 3px;
    background: black;
    width: 50%;
    top: 50%;
    left: 50%;
    transition: 0.075s ease-in-out;
  }
  button.burger:before {
    transform: translate(-50%, -5px);
  }
  button.burger:after {
    transform: translate(-50%, 3px);
  }
  button.burger.is-active:before {
    transform: translate(-50%, -2px) rotate(45deg);
  }
  button.burger.is-active:after {
    transform: translate(-50%, -2px) rotate(-45deg);
  }
  nav {
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
  }
  nav .menu-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background: white;
    translate: 0 -101%;
    transition: translate 0.2s ease-in;
    z-index: 2;
  }
  nav .menu-container .members {
    opacity: 0;
    flex-direction: column;
    gap: 45px;
    height: fit-content;
    justify-content: center;
    align-items: flex-start;
    width: fit-content;
    transition: opacity 0.2s ease-in;
  }
  nav .menu-container .members .serif {
    font-size: 19px;
  }
  nav .menu-container .members .sans {
    font-size: 14px;
  }
  nav:has(button.is-active) .menu-container {
    translate: 0 0;
    transition: translate 0.2s ease-out;
  }
  nav:has(button.is-active) .menu-container .members {
    opacity: 1;
    transition: opacity 0.2s ease-out;
  }
  nav .logo.mobile {
    display: block;
    position: absolute;
    top: 0;
    width: 75px;
    left: var(--padding-side);
    z-index: 2;
  }
  nav .logo.mobile svg {
    height: auto;
  }
}
html, body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--background);
  font-family: "serif", "Times New Roman", Times, serif;
  letter-spacing: 0.035em;
}

:root {
  --background: #f2f2f2;
  --padding-side: 25px;
  --font-size-sm-sans: 14px;
  --font-size-sm-serif: 16px;
  --font-size-md-sans: 16px;
  --font-size-md-serif: 18px;
  --font-size-lg-sans: 42px;
  --font-size-lg-serif: 28px;
  --font-size-members-name: 44px;
  --font-size-xl-serif: 52px;
  --short-side: min(100px, 10vw);
  --short-margin-left: auto;
  --nav-height: min(90px, 9vw);
  --red: #DC8B76;
  --blue: #C0D2DC;
  --yellow: #FDDEA2;
  --creme: #EBE0CE;
}
@media (max-width: 1300px) {
  :root {
    --font-size-xl-serif: 48px;
    --font-size-members-name: 40px;
    --font-size-lg-sans: 38px;
    --font-size-md-serif: 17px;
  }
}
@media (max-width: 992px) {
  :root {
    --short-side: 5vw;
    --padding-side: 20px;
    --font-size-sm-sans: 14px;
    --font-size-sm-serif: 16px;
    --font-size-md-sans: 16px;
    --font-size-md-serif: 16px;
    --font-size-lg-sans: 36px;
    --font-size-lg-serif: 24px;
    --font-size-xl-serif: 42px;
  }
}
@media (max-width: 860px) {
  :root {
    --font-size-members-name: 36px;
    --font-size-xl-serif: 34px;
  }
}
@media (max-width: 768px) {
  :root {
    --nav-height: 50px;
    --short-side: 10vw;
    --font-size-members-name: 44px;
    --font-size-sm-sans: 14px;
    --font-size-sm-serif: 16px;
    --font-size-md-sans: 18px;
    --font-size-md-serif: 18px;
    --font-size-lg-sans: 42px;
    --font-size-lg-serif: 28px;
  }
}
@media (max-width: 560px) {
  :root {
    --short-side: 5vw;
  }
}
@media (max-width: 480px) {
  :root {
    --padding-side: 10px;
    --font-size-sm-sans: 14px;
    --font-size-sm-serif: 15px;
    --font-size-md-sans: 16px;
    --font-size-md-serif: 18px;
    --font-size-lg-sans: 32px;
    --font-size-lg-serif: 28px;
    --font-size-xl-serif: 32px;
  }
}
@media (max-width: 480px) {
  :root {
    --short-side: 0;
    --short-margin-left: 0;
  }
}
@media (max-width: 360px) {
  :root {
    --font-size-xl-serif: 32px;
    --font-size-lg-serif: 24px;
  }
}

.serif,
.serif-sm,
.serif-md,
.serif-lg,
.serif-members-name,
.serif-xl {
  font-family: "serif", "Times New Roman", Times, serif;
}

.sans,
.sans-sm,
.sans-md,
.sans-lg,
.sans-xl {
  font-family: "sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.serif-sm {
  font-size: var(--font-size-sm-serif);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.serif-md {
  font-size: var(--font-size-md-serif);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.serif-lg {
  font-size: var(--font-size-lg-serif);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.serif-xl {
  font-size: var(--font-size-xl-serif);
  letter-spacing: 0.04em;
}

.serif-members-name {
  text-transform: lowercase;
  font-size: var(--font-size-members-name);
  letter-spacing: 0.06em;
  line-height: 1;
}

.sans-sm {
  font-size: var(--font-size-sm-sans);
  letter-spacing: 0.04em;
}

.sans-md {
  font-size: var(--font-size-md-sans);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.sans-lg {
  font-size: var(--font-size-lg-sans);
  letter-spacing: 0.04em;
}

body {
  box-sizing: border-box;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
}
body:has(input.burger:checked) {
  overflow: hidden !important;
}

section, footer {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

section {
  padding: 0 var(--padding-side);
  box-sizing: border-box;
}

.spacer {
  flex-grow: 1;
}

.spacer-05 {
  flex-grow: 0.5;
}

.spacer-075 {
  flex-grow: 0.75;
}

img, picture {
  display: block;
  width: 100%;
  height: auto;
}

sup {
  font-size: 0.6em;
  translate: 0 -50%;
  display: inline-block;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

.footer-links {
  font-family: "sans";
  font-size: 14px;
  display: flex;
  gap: 20px;
}
.footer-links.short {
  margin-right: 0;
}
.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.max-width {
  max-width: 1100px;
}

.opacity-null {
  opacity: 0;
}

.display-none {
  display: none;
}

.overflow-hidden {
  overflow: hidden;
}

.underline {
  text-decoration: underline;
}

.uppercase {
  text-transform: uppercase;
}

.bold {
  font-weight: bold;
}

.anchor {
  scroll-margin-top: min(100px, 9vw);
}
@media (max-width: 768px) {
  .anchor {
    scroll-margin-top: 45px;
  }
}

.short {
  width: calc(100% - var(--short-side));
  margin-left: var(--short-margin-left);
  max-width: 550px;
}

.nobr {
  white-space: nowrap;
}

.button,
.tag {
  font-family: "sans";
  font-size: 16px;
  letter-spacing: 0.04em;
  border: 1px solid black;
  padding: 0.75em 4em;
  display: table;
}

.tag {
  hyphens: manual;
}

.button {
  transition: 0.3s ease-out;
  display: block;
  width: fit-content;
}
.button:hover {
  cursor: pointer;
  transition: 0.05s ease-in;
  background: black;
  color: white;
}

@media (max-width: 992px) {
  .button {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .tag {
    padding: 0.75em 3em;
  }
}
@media (max-width: 360px) {
  .tag {
    padding: 0.75em 2em;
  }
}
.mt-1 {
  margin-top: 0.25em;
}

.mb-1 {
  margin-bottom: 0.25em;
}

.mt-2 {
  margin-top: 0.5em;
}

.mb-2 {
  margin-bottom: 0.5em;
}

.mt-3 {
  margin-top: 0.75em;
}

.mb-3 {
  margin-bottom: 0.75em;
}

.mt-4 {
  margin-top: 1em;
}

.mb-4 {
  margin-bottom: 1em;
}

.mt-5 {
  margin-top: 1.25em;
}

.mb-5 {
  margin-bottom: 1.25em;
}

.mt-6 {
  margin-top: 1.5em;
}

.mb-6 {
  margin-bottom: 1.5em;
}

.mt-7 {
  margin-top: 1.75em;
}

.mb-7 {
  margin-bottom: 1.75em;
}

.mt-8 {
  margin-top: 2em;
}

.mb-8 {
  margin-bottom: 2em;
}

.mt-9 {
  margin-top: 2.25em;
}

.mb-9 {
  margin-bottom: 2.25em;
}

.mt-10 {
  margin-top: 2.5em;
}

.mb-10 {
  margin-bottom: 2.5em;
}

section.hero {
  background: var(--red);
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  section.hero {
    padding: 0 var(--padding-side);
  }
}
section.hero .intro-text {
  max-width: 800px;
  padding: 0 var(--padding-side);
  text-align: center;
  margin: 0 auto 5em;
}
section.hero .intro-text .tag {
  margin: 5em auto;
}
section.hero .max-width {
  max-width: none;
}
section.hero .text-content {
  max-width: 700px;
  margin: 0 auto;
}
section.hero .content {
  display: flex;
  height: 100svh;
}
section.hero .content .left,
section.hero .content .right {
  display: block;
  width: 50%;
}
section.hero .content .left {
  box-sizing: border-box;
}
section.hero .content h1 {
  margin-top: 100px;
  line-height: 1;
  padding-right: 1em;
  box-sizing: border-box;
  margin-top: max(20vh, 3.5em);
  margin-bottom: 1.8em;
}
section.hero .content .right {
  align-self: stretch;
}
section.hero .content .right picture,
section.hero .content .right img {
  height: 100%;
  object-fit: cover;
}
section.hero .content .logo {
  position: relative;
  width: min(800px, 100vw - min(100px, 10vw) * 2);
  max-width: 120vh;
}
@media (max-width: 768px) {
  section.hero .content {
    height: auto;
    max-height: none;
    flex-direction: column;
  }
  section.hero .content .right {
    width: calc(100% - var(--short-side) * 2);
    margin: 100px auto 0;
  }
  section.hero .content .right picture {
    aspect-ratio: 3.25/4;
  }
}
@media (max-width: 480px) {
  section.hero .content .right {
    width: 80%;
  }
}

section.members {
  padding: 0;
}
section.members article {
  display: flex;
  background: var(--accent-color);
}
section.members article:nth-child(even) {
  flex-direction: row-reverse;
}
section.members article div.text,
section.members article div.image-container {
  width: 50%;
}
section.members article div.text {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
}
section.members article div.text .serif-members-name,
section.members article div.text .description,
section.members article div.text .buttons {
  padding-right: 50px;
  padding-left: 50px;
  box-sizing: border-box;
}
section.members article div.text .short {
  padding-right: 50px;
  box-sizing: border-box;
}
section.members article div.text-content {
  height: 100%;
  width: 100%;
  max-width: 700px;
  max-height: 750px;
  margin: 0 0 0 auto;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}
section.members article div.text-content .buttons {
  flex-wrap: wrap;
  max-width: 100%;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
section.members article div.text-content .button {
  padding-left: 1em;
  padding-right: 1em;
  text-align: center;
  flex-grow: 1;
  max-width: 33%;
}
section.members article div.text-content .button:hover {
  color: var(--accent-color);
  background-color: black;
}
section.members article div.image-container {
  position: relative;
  min-height: max(50vw, 50vh);
  max-height: calc(100svh - var(--nav-height));
}
section.members article div.image-container picture {
  display: inline;
}
section.members article div.image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
section.members article div.image-container:hover .image-large {
  opacity: 0;
}
section.members article div.text:has(button:hover) + div.image-container .image-large {
  opacity: 0;
}
section.members article .image-large {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: 0.25s ease-in-out;
}
section.members article .image-large img {
  aspect-ratio: 0.79;
}
section.members article .image-portrait {
  position: absolute;
  background-color: white;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.members article .image-portrait picture {
  width: 50%;
}
section.members article .image-portrait img {
  aspect-ratio: 0.79;
  position: relative;
  height: auto;
}
section.members article:nth-child(3n-2) {
  --accent-color: var(--blue);
}
section.members article:nth-child(3n-1) {
  --accent-color: var(--yellow);
}
section.members article:nth-child(3n) {
  --accent-color: var(--red);
}
@media (max-width: 992px) and (min-width: 769px) {
  section.members article div.text {
    width: 66.6%;
    min-height: 80vw;
  }
  section.members article div.text-content {
    max-width: none;
  }
  section.members article div.image-container {
    aspect-ratio: 0.79;
    max-height: 100svh;
    width: 34%;
  }
  section.members article .image-portrait picture {
    width: 80%;
  }
  section.members article .short {
    box-sizing: border-box;
    padding-left: 50px;
  }
}
@media (max-width: 768px) {
  section.members article {
    flex-direction: column;
    padding-left: var(--padding-side);
    padding-right: var(--padding-side);
  }
  section.members article:nth-child(even) {
    flex-direction: column;
  }
  section.members article div.text,
  section.members article div.image-container {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    max-height: none;
    min-height: 0;
  }
  section.members article div.text {
    width: 100%;
    order: 2;
    height: auto;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
  section.members article div.text .text-content {
    max-height: none;
  }
  section.members article div.text .serif-members-name,
  section.members article div.text .description,
  section.members article div.text .short,
  section.members article div.text .buttons {
    padding-left: 0;
    padding-right: 0;
  }
  section.members article div.image-container {
    position: relative;
    max-width: none;
    margin: 0 auto;
    box-sizing: border-box;
    margin: 10vw auto;
    max-width: 550px;
  }
  section.members article .image-portrait {
    position: relative;
    aspect-ratio: auto;
    height: auto;
    width: calc(100% - var(--short-side) * 2);
    margin: 10vw auto;
    order: 1;
  }
  section.members article .image-portrait picture {
    width: 100%;
  }
  section.members article .image-large {
    display: none;
  }
  section.members article .spacer {
    min-height: 60px;
  }
  section.members article .spacer:first-child {
    min-height: 0;
  }
  section.members article .spacer-05 {
    min-height: 60px;
  }
  section.members article .spacer-075 {
    min-height: 40px;
  }
}
@media (max-width: 480px) {
  section.members article .image-portrait {
    width: 80%;
  }
}

body:has(section.text-page) {
  min-height: 100svh;
  padding: min(180px, 20vw) var(--padding-side) 20px;
  box-sizing: border-box;
}

section.text-page {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: var(--font-size-md);
  line-height: 1.3;
}
section.text-page h1, section.text-page h2, section.text-page h3, section.text-page h4 {
  font-family: "serif";
}
section.text-page h1 {
  font-size: var(--font-size-xl-serif);
}
section.text-page h2 {
  font-size: var(--font-size-lg-serif);
}
section.text-page h1, section.text-page h2, section.text-page h3, section.text-page h4, section.text-page p {
  margin-bottom: 1em;
  max-width: 600px;
  margin-left: auto;
}
@media (max-width: 720px) {
  section.text-page h1, section.text-page h2, section.text-page h3, section.text-page h4, section.text-page p {
    max-width: none;
  }
}
section.text-page ul,
section.text-page p {
  font-family: "sans";
  font-size: var(--font-size-sm-sans);
}
section.text-page ul {
  margin-bottom: 2em;
  padding-left: 0.75em;
  list-style: disc;
}
section.text-page ul li {
  padding-left: 0.75em;
}
section.text-page a:hover {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
section.text-page p:has(+ :not(p)) {
  margin-bottom: 3em;
}
section.text-page + footer {
  margin-bottom: 20px;
}

.text-page-footer {
  max-width: 1100px;
  margin: 50px auto 0;
}

section.contact-section {
  background: var(--creme);
  width: 100%;
  padding: 0;
}
section.contact-section .tag {
  margin: min(10em, 25vw) auto;
}
section.contact-section .contact-container {
  display: flex;
}
section.contact-section .contact-image,
section.contact-section .contact-content {
  width: 50%;
}
section.contact-section .contact-content {
  background-color: white;
  padding: 0 var(--padding-side);
  box-sizing: border-box;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
section.contact-section .spacer.limited {
  max-height: min(100px, 7.5vw);
}
@media (max-width: 1200px) and (min-width: 769px) {
  section.contact-section .short {
    margin-left: 0;
    width: 100%;
  }
  section.contact-section .contact-content {
    padding-left: 50px;
  }
}
@media (max-width: 768px) {
  section.contact-section .contact-container {
    flex-direction: column;
  }
  section.contact-section .contact-image,
  section.contact-section .contact-content {
    width: 100%;
  }
  section.contact-section .contact-content {
    order: 2;
  }
  section.contact-section .contact-image {
    aspect-ratio: 1;
    position: relative;
  }
  section.contact-section .contact-image img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  section.contact-section .spacer.limited,
  section.contact-section .spacer {
    height: 70px;
    max-height: none;
  }
}

section.contact-list {
  background: var(--creme);
  width: 100%;
}
section.contact-list .tag {
  margin: 12em auto 5em;
}
section.contact-list .list {
  max-width: 1100px;
  margin: 0 auto;
}
section.contact-list .logo {
  width: min(400px, 50vw);
  margin-bottom: 50px;
}
section.contact-list table {
  width: 100%;
  border-bottom: 1px solid black;
}
section.contact-list table tr {
  border-top: 1px solid black;
}
section.contact-list table td {
  box-sizing: border-box;
  height: 100%;
  vertical-align: top;
}
section.contact-list table td:nth-child(1) {
  max-width: 250px;
  padding: 40px var(--padding-side) 40px 0;
  box-sizing: border-box;
}
section.contact-list table td:nth-child(2) {
  max-width: 440px;
  padding: 40px var(--padding-side) 40px 0;
  box-sizing: border-box;
}
section.contact-list table td:nth-child(2) span {
  hyphens: auto;
  display: block;
}
section.contact-list table td:nth-child(2) span:first-child {
  margin-bottom: 0.4em;
}
section.contact-list table td:nth-child(3) {
  padding: 10px 20px;
  width: 155px;
}
section.contact-list table td:nth-child(3) img {
  min-width: min(155px, 15vw);
  aspect-ratio: 0.78;
  object-fit: cover;
  background-color: rgba(0, 0, 0, 0.1);
}
section.contact-list table td:nth-child(4) {
  vertical-align: top;
}
section.contact-list table a.button {
  width: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 768px) {
  section.contact-list table td {
    display: inline-block;
    width: 50% !important;
    max-width: none !important;
  }
  section.contact-list table td:nth-child(3) {
    padding-top: 0;
    padding-bottom: 40px;
    padding-left: 0;
  }
  section.contact-list table td:nth-child(3) img {
    width: 80%;
  }
  section.contact-list table td .button {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  section.contact-list table tr {
    display: block;
  }
  section.contact-list table td {
    width: 100% !important;
  }
  section.contact-list table td:nth-child(2) {
    padding-top: 0;
  }
  section.contact-list table td:nth-child(3) {
    padding-right: 0;
  }
  section.contact-list table td:nth-child(3) img {
    margin: 0 auto;
    max-width: 250px;
    width: 80%;
  }
}
section.contact-list .button {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  box-sizing: border-box;
  width: 14em;
  max-width: min(180px, 15vw);
  background-color: black;
  color: var(--creme);
  margin-top: -1px;
}
section.contact-list .button:hover {
  color: black;
  background-color: var(--creme);
}
section.contact-list .address-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 0;
}
section.contact-list .address-bar h3 {
  font-size: 16px;
  font-family: "sans";
}
section.contact-list .address-bar h3 br {
  display: none;
}
section.contact-list .maps-image {
  background-color: rgba(0, 0, 0, 0.1);
}
section.contact-list .maps-image img {
  aspect-ratio: 1.69;
  object-fit: cover;
}
section.contact-list .footer-links {
  padding: 40px 0;
}
@media (max-width: 768px) {
  section.contact-list .address-bar {
    flex-direction: column;
  }
  section.contact-list .address-bar h3 {
    margin-bottom: 2em;
    text-align: center;
  }
  section.contact-list .address-bar h3 br {
    display: block;
  }
  section.contact-list .address-bar h3 span {
    display: none;
  }
  section.contact-list .button {
    width: 180px;
    max-width: 180px;
  }
}
@media (max-width: 480px) {
  section.contact-list a.button {
    margin-left: auto;
    margin-right: auto;
    max-width: 250px;
    width: 80% !important;
  }
}

section.text-page.page-404 .text {
  text-align: center;
  max-width: 25em;
}
section.text-page.page-404 .text a {
  margin: 40px auto 0;
}
section.text-page.page-404 .footer-links {
  align-self: flex-start;
}

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