@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 200;
  src: url("/assets/fonts/montserrat-v26-latin-200.woff2") format("woff2"), url("/assets/fonts/montserrat-v26-latin-200.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 200;
  src: url("/assets/fonts/montserrat-v26-latin-200italic.woff2") format("woff2"), url("/assets/fonts/montserrat-v26-latin-200italic.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/montserrat-v26-latin-300.woff2") format("woff2"), url("/assets/fonts/montserrat-v26-latin-300.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 300;
  src: url("/assets/fonts/montserrat-v26-latin-300italic.woff2") format("woff2"), url("/assets/fonts/montserrat-v26-latin-300italic.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/montserrat-v26-latin-regular.woff2") format("woff2"), url("/assets/fonts/montserrat-v26-latin-regular.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  src: url("/assets/fonts/montserrat-v26-latin-italic.woff2") format("woff2"), url("/assets/fonts/montserrat-v26-latin-italic.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/fonts/montserrat-v26-latin-600.woff2") format("woff2"), url("/assets/fonts/montserrat-v26-latin-600.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 600;
  src: url("/assets/fonts/montserrat-v26-latin-600italic.woff2") format("woff2"), url("/assets/fonts/montserrat-v26-latin-600italic.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/montserrat-v26-latin-700.woff2") format("woff2"), url("/assets/fonts/montserrat-v26-latin-700.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  src: url("/assets/fonts/montserrat-v26-latin-700italic.woff2") format("woff2"), url("/assets/fonts/montserrat-v26-latin-700italic.ttf") format("truetype");
}
:root {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.6;
  --container-padding: 6rem;
}
@media (max-width: 1000px) {
  :root {
    font-size: 17px;
    --container-padding: 4rem;
  }
}
@media (max-width: 800px) {
  :root {
    font-size: 16px;
    line-height: 1.5;
    --container-padding: 2rem;
  }
}
@media (max-width: 400px) {
  :root {
    --container-padding: 1.5rem;
  }
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 100%;
}
@media (max-width: 1000px) {
  body {
    -webkit-hyphens: auto;
            hyphens: auto;
  }
}

header {
  display: grid;
  grid-template-columns: minmax(calc(50vw - 600px), var(--container-padding)) 1fr minmax(calc(50vw - 600px), var(--container-padding));
  grid-template-rows: 120px 1fr 1.8fr;
}
header.small {
  grid-template-rows: 1fr;
}
header > div.header {
  grid-column: 2;
  grid-row: 1;
  z-index: 3;
  display: flex;
  justify-content: space-between;
}
header > div.header img.logo {
  display: inline;
  width: auto;
  height: 2.5rem;
  margin: 2.2rem 0;
}
header > div.header > menu {
  display: flex;
  margin: 20px 0 0 0;
}
header > div.headline {
  grid-column: 2;
  grid-row: 3;
  z-index: 2;
  text-align: center;
  -webkit-hyphens: none;
          hyphens: none;
}
header > div.headline > span {
  color: #1f98a7;
  display: block;
  font-size: 2.3rem;
  font-weight: 300;
  line-height: 1.2;
}
@media (max-width: 800px) {
  header > div.headline > span {
    font-size: 2rem;
  }
}
header > div.headline > span > strong {
  font-weight: 700;
}
header > div.headline.subsite {
  align-self: end;
  background-color: rgba(255, 255, 255, 0.7);
  grid-column: 1/4;
  padding: 10px;
}
header > img.banner {
  grid-column: 1/-1;
  grid-row: 2/-1;
  z-index: 1;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 30% center;
     object-position: 30% center;
  width: 100%;
  height: auto;
}
@media (max-width: 1200px) {
  header > div.header img.logo {
    height: 2.2rem;
  }
}
@media (max-width: 1000px) {
  header > div.header img.logo {
    height: 2.8rem;
    margin: 2.5rem 0;
  }
}
@media (max-width: 800px) {
  header {
    grid-template-rows: 6rem 1fr 1.8fr;
  }
  header > div.header img.logo {
    margin: 1.9rem 0;
  }
}
@media (max-width: 600px) {
  header {
    grid-template-columns: 1fr;
    grid-template-rows: 6rem auto auto;
  }
}
@media (max-width: 600px) and (max-width: 400px) {
  header {
    grid-template-rows: 5rem auto auto;
  }
}
@media (max-width: 600px) {
  header > div.header {
    grid-column: 1;
    grid-row: 1;
  }
  header > div.header img.logo {
    margin: 5px 0 0 0;
    padding: var(--container-padding);
    height: 2rem;
  }
}
@media (max-width: 600px) and (max-width: 400px) {
  header > div.header img.logo {
    height: 1.7rem;
  }
}
@media (max-width: 600px) {
  header > div.header > menu {
    display: contents;
  }
  header > div.headline {
    grid-column: 1;
    grid-row: 2;
    background-color: #08454d;
    color: #fff;
    margin: 0;
    padding: var(--container-padding);
  }
  header > div.headline > span:nth-child(2) {
    margin-top: 1rem;
  }
  header > img.banner {
    grid-column: 1;
    grid-row: 3;
    -o-object-position: 63% center;
       object-position: 63% center;
  }
}

#menu-button {
  display: none;
  cursor: pointer;
  position: fixed;
  top: 3rem;
  right: 3rem;
  width: 40px;
  height: 35px;
  z-index: 11;
}
@media (max-width: 1000px) {
  #menu-button {
    display: block;
  }
}
@media (max-width: 800px) {
  #menu-button {
    top: var(--container-padding);
    right: var(--container-padding);
  }
}
@media (max-width: 1000px) {
  #menu-button {
    position: absolute;
  }
}
#menu-button > div {
  background-color: #1f98a7;
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
  opacity: 1;
  transform: translateY(0) rotate(0deg);
  transform-origin: center;
  width: 100%;
  height: 5px;
}
#menu-button > div:nth-child(1), #menu-button > div:nth-child(2) {
  margin: 0 0 10px 0;
}
body.menu-open #menu-button {
  position: fixed;
}
body.menu-open #menu-button > div {
  background-color: #fff;
}
body.menu-open #menu-button > div:nth-child(1) {
  transform: translateY(15px) rotate(45deg);
}
body.menu-open #menu-button > div:nth-child(2) {
  opacity: 0;
}
body.menu-open #menu-button > div:nth-child(3) {
  transform: translateY(-15px) rotate(-45deg);
}

nav {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex: 1;
  color: #000000;
  transition: transform 0.2s ease-in-out;
}
@media (max-width: 1000px) {
  nav {
    background-color: #1f98a7;
    color: #fff;
    --menu-width: 400px;
    padding: calc(3rem + 35px + 3rem) 3rem 3rem;
    position: fixed;
    top: 0;
    right: calc(var(--menu-width) * -1);
    width: var(--menu-width);
    height: 100%;
    transform: translateX(0);
    z-index: 10;
  }
}
@media (max-width: 1000px) and (max-width: 800px) {
  nav {
    --menu-width: 350px;
    padding: calc(var(--container-padding) + 35px + var(--container-padding)) var(--container-padding) var(--container-padding);
  }
}
@media (max-width: 1000px) and (max-width: 400px) {
  nav {
    --menu-width: 300px;
  }
}
@media (max-width: 1000px) {
  body.menu-open nav {
    transform: translateX(calc(var(--menu-width) * -1));
  }
}
nav ul {
  list-style: none;
  margin: 1.5rem 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: end;
}
@media (max-width: 1000px) {
  nav ul {
    margin: 0;
    flex-direction: column;
  }
}
nav ul li {
  position: relative;
  margin: 0 0 0 2rem;
  padding: 0;
}
@media (max-width: 1200px) {
  nav ul li {
    margin: 0 0 0 1.1rem;
  }
}
nav ul li a {
  display: block;
  color: inherit;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.2;
  -webkit-hyphens: none;
          hyphens: none;
  white-space: nowrap;
  padding: 0.8rem 0;
}
nav ul li a:hover {
  color: #1f98a7;
  text-decoration: none;
}
@media (max-width: 1000px) {
  nav ul li a:hover {
    color: #f4f4f4;
    text-decoration: underline;
  }
}
nav ul li.active a {
  font-weight: 700;
}
nav ul li span {
  display: block;
  color: #1f98a7;
  font-size: 0.9em;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.8rem 0;
}
@media (max-width: 1000px) {
  nav ul li span {
    color: #f4f4f4;
    text-decoration: underline;
  }
}
@media (max-width: 1000px) {
  nav ul li {
    margin: 0;
  }
}

#header-contact {
  background-color: #1f98a7;
}
#header-contact > div {
  display: flex;
  flex-direction: row;
  margin: 40px auto;
  width: 100%;
  max-width: 990px;
}
@media (max-width: 800px) {
  #header-contact > div {
    flex-direction: column;
    margin: 10px auto;
  }
}
#header-contact > div > div {
  border-right: 1px solid #f4f4f4;
  color: #f4f4f4;
  flex: 1 1 auto;
  line-height: 1em;
  padding: 0.2em 0 0 0;
  text-align: center;
}
#header-contact > div > div:nth-child(2) {
  border-right: none;
}
@media (max-width: 800px) {
  #header-contact > div > div {
    border-right: none;
    padding: 0.5em 0 0 0;
  }
}
#header-contact > div > div > a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 0.8em;
  font-weight: 400;
  line-height: 1.2em;
  -webkit-hyphens: none;
          hyphens: none;
  margin: 0;
  padding: 0.1rem 0.4rem;
}
#header-contact > div > div > a.icon-calendar::before, #header-contact > div > div > a.icon-phone::before, #header-contact > div > div > a.icon-mail::before {
  content: "";
  display: block;
  background-color: #fff;
  -webkit-mask: center center/contain no-repeat;
          mask: center center/contain no-repeat;
  margin-right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
}
#header-contact > div > div > a.icon-mail::before {
  -webkit-mask-image: url("/assets/img/icon-mail.svg");
          mask-image: url("/assets/img/icon-mail.svg");
}
#header-contact > div > div > a.icon-phone::before {
  -webkit-mask-image: url("/assets/img/icon-phone.svg");
          mask-image: url("/assets/img/icon-phone.svg");
}
#header-contact > div > div > a.icon-calendar::before {
  background-color: #1f98a7;
  -webkit-mask-image: url("/assets/img/icon-calendar.svg");
          mask-image: url("/assets/img/icon-calendar.svg");
}
#header-contact > div > div > a.background-dark {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  color: #1f98a7 !important;
  padding: 0.1rem 0.8rem 0.1rem 0.4rem;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--container-padding);
}
section > .container {
  flex: 1;
  display: flex;
  width: 100%;
  max-width: 990px;
}
@media (max-width: 800px) {
  section > .container {
    flex-direction: column;
  }
}
section > .container.margin-top {
  margin-top: 3em;
}
section > .container > div {
  flex: 1;
}
@media (max-width: 800px) {
  section > .container > div {
    flex: auto;
  }
}
section > .container > aside {
  flex: 1;
}
@media (max-width: 800px) {
  section > .container > aside {
    flex: auto;
  }
}
section > .container > main {
  flex: 2;
  margin-left: 120px;
  position: relative;
}
@media (max-width: 1000px) {
  section > .container > main {
    margin-left: 80px;
  }
}
@media (max-width: 800px) {
  section > .container > main {
    flex: auto;
    margin-left: 0;
    margin-top: 2rem;
  }
}

.content h2 {
  color: #1f98a7;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 3rem 0;
}
@media (max-width: 800px) {
  .content h2 {
    font-size: 2rem;
  }
}
.content h2:first-child {
  margin-top: 0;
}
.content h2:last-child {
  margin-bottom: 0;
}
.content h2.space-below {
  margin-bottom: 2rem;
}
.content h3 {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 2.5rem 0 1.5rem;
}
.content h3:first-child {
  margin-top: 0;
}
.content h3:last-child {
  margin-bottom: 0;
}
.content h3.space-below {
  margin-bottom: 2rem;
}
.content h3.icon-money::before, .content h3.icon-family::before {
  content: "";
  display: block;
  background: transparent center center/contain no-repeat;
  margin-right: 1rem;
  width: 3.5rem;
  height: 3.5rem;
  min-width: 2rem;
  min-height: 2rem;
}
.content h3.icon-family::before {
  background-image: url("/assets/img/icon-family.svg");
}
.content h3.icon-money::before {
  background-image: url("/assets/img/icon-money.svg");
}
.content p {
  margin: 1.5rem 0;
}
.content p:first-child {
  margin-top: 0;
}
.content p:last-child {
  margin-bottom: 0;
}
.content p.space-below {
  margin-bottom: 2rem;
}
.content p.blue {
  color: #1f98a7;
  margin: 0 0 0.5rem 0;
}
.content p.blue:first-child {
  margin-top: 0;
}
.content p.blue:last-child {
  margin-bottom: 0;
}
.content p.small {
  font-size: 0.8em;
}
.content ul {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0 0 0 1.2rem;
}
.content ul:first-child {
  margin-top: 0;
}
.content ul:last-child {
  margin-bottom: 0;
}
.content ul.space-below {
  margin-bottom: 2rem;
}
.content ul > li {
  position: relative;
  margin-bottom: 0.2rem;
}
.content ul > li::before {
  content: "";
  display: block;
  background-color: #1f98a7;
  -webkit-mask: url("/assets/img/icon-list.svg") center center/contain no-repeat;
          mask: url("/assets/img/icon-list.svg") center center/contain no-repeat;
  position: absolute;
  left: -1.2rem;
  top: 0.5rem;
  width: 0.7rem;
  height: 0.7rem;
}
.content ul.no-margin-top {
  margin: 0;
}
.content ul.no-margin-top:first-child {
  margin-top: 0;
}
.content ul.no-margin-top:last-child {
  margin-bottom: 0;
}
.content .flex {
  display: flex;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.content .flex:first-child {
  margin-top: 0;
}
.content .flex:last-child {
  margin-bottom: 0;
}
@media (max-width: 1000px) {
  .content .flex {
    display: block;
  }
}
.content .flex > * {
  flex: 1;
  margin: 0 2rem 0 0;
}
@media (max-width: 1000px) {
  .content .flex > * {
    margin: 0;
  }
}
.content .flex > :last-child {
  margin-right: 0;
}
.content .flex.no-margin {
  margin: 0;
}
.content .flex.no-margin:first-child {
  margin-top: 0;
}
.content .flex.no-margin:last-child {
  margin-bottom: 0;
}
.content form {
  margin: 1.5rem 0;
}
.content form:first-child {
  margin-top: 0;
}
.content form:last-child {
  margin-bottom: 0;
}
.content img {
  display: block;
  margin: 1.5rem 0;
  width: 100%;
  height: auto;
}
.content img:first-child {
  margin-top: 0;
}
.content img:last-child {
  margin-bottom: 0;
}
.content img.circle {
  border-radius: 50%;
  max-width: 300px;
}
.content a.link-button {
  display: flex;
  margin: 1.5rem 0;
}
.content a.link-button:first-child {
  margin-top: 0;
}
.content a.link-button:last-child {
  margin-bottom: 0;
}
.content .content-icon {
  margin: 2em auto;
  width: 20%;
}

#schwerpunkte > .container > .content h2 {
  margin: 0 0 0.2em 0;
}
#schwerpunkte > .container > .content h2:first-child {
  margin-top: 0;
}
#schwerpunkte > .container > .content h2:last-child {
  margin-bottom: 0;
}
#schwerpunkte > .container > .content h4 {
  text-align: center;
  margin: 0.8em 0 0 0;
}
#schwerpunkte > .container > .content h4:first-child {
  margin-top: 0;
}
#schwerpunkte > .container > .content h4:last-child {
  margin-bottom: 0;
}
#schwerpunkte > .container > .content p {
  text-align: center;
  margin: 0.2em 0 0 0;
}
#schwerpunkte > .container > .content p:first-child {
  margin-top: 0;
}
#schwerpunkte > .container > .content p:last-child {
  margin-bottom: 0;
}
#schwerpunkte .content-icon {
  margin: 0 auto;
  width: 150px;
}
@media (max-width: 1000px) {
  #schwerpunkte .content-icon {
    margin: 50px auto 0 auto;
  }
}
@media (max-width: 1000px) {
  #schwerpunkte .content-icon.first {
    margin: 0 auto;
  }
}

.schwerpunkte-mediation > .container > .content h2 {
  margin: 0 0 0.2em 0;
}
.schwerpunkte-mediation > .container > .content h2:first-child {
  margin-top: 0;
}
.schwerpunkte-mediation > .container > .content h2:last-child {
  margin-bottom: 0;
}
.schwerpunkte-mediation > .container > .content h4 {
  text-align: center;
  margin: 0 0 0 0;
}
.schwerpunkte-mediation > .container > .content h4:first-child {
  margin-top: 0;
}
.schwerpunkte-mediation > .container > .content h4:last-child {
  margin-bottom: 0;
}

#team img.circle {
  border-radius: 50%;
  margin: 0 auto;
  max-width: 180px;
}
#team > .container > .content h4 {
  text-align: center;
  margin: 0.8em 0 0 0;
}
#team > .container > .content h4:first-child {
  margin-top: 0;
}
#team > .container > .content h4:last-child {
  margin-bottom: 0;
}
#team > .container > .content p {
  text-align: center;
  margin: 0.2em 0 0 0;
  margin-bottom: 2em;
}
#team > .container > .content p:first-child {
  margin-top: 0;
}
#team > .container > .content p:last-child {
  margin-bottom: 0;
}
#team > .container > .content p.space-below {
  margin-bottom: 2rem;
}

#kontakt-moeglichkeiten a.link-button {
  display: flex;
  width: 100%;
}
@media (max-width: 1000px) {
  #kontakt-moeglichkeiten a.link-button {
    margin: 0 auto;
    max-width: 250px;
  }
}

.content img.content-icon-max-height {
  margin: 0 auto;
  height: 80px;
}

#netter-spruch {
  background-image: url("/assets/img/background-home-netter-spruch--3000w.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1000px) {
  #netter-spruch {
    background-image: url("/assets/img/background-home-netter-spruch--800w.jpg");
    background-position: right;
  }
}
#netter-spruch .content > p.text-1 {
  color: #08454d;
  font-size: 2em;
  font-weight: 200;
  width: 80%;
}
#netter-spruch .content > p.text-2 {
  font-size: 1em;
  font-weight: 700;
  margin: 0;
}
#netter-spruch .content > p.text-3 {
  margin: 0;
}

#image-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.1fr calc(50% - var(--gap) / 2);
  grid-template-rows: 300px 300px 300px 450px;
  grid-template-areas: "img1 img2 img2" "img1 img3 img3" "img4 img4 img5" "img6 img6 img6";
  gap: var(--gap);
  --gap: 1.5rem;
  margin-top: 30px;
}
@media (max-width: 1200px) {
  #image-grid {
    grid-template-rows: 250px 250px 250px 350px;
  }
}
@media (max-width: 1000px) {
  #image-grid {
    grid-template-rows: 200px 200px 200px 300px;
  }
}
@media (max-width: 800px) {
  #image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    grid-template-areas: "img1" "img2" "img3" "img4" "img5" "img6";
  }
}
#image-grid > img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: 100%;
  margin: 0;
}
#image-grid > img:nth-child(1) {
  grid-area: img1;
}
#image-grid > img:nth-child(2) {
  grid-area: img2;
}
#image-grid > img:nth-child(3) {
  grid-area: img3;
}
#image-grid > img:nth-child(4) {
  grid-area: img4;
}
#image-grid > img:nth-child(5) {
  grid-area: img5;
}
#image-grid > img:nth-child(6) {
  grid-area: img6;
}

.bg-blue {
  background-color: #1f98a7;
}
.bg-blue h2 {
  color: #f4f4f4;
}

.bg-grey {
  background-color: #F4F4F4;
}

.bg-grey-dark {
  background-image: url("/assets/img/background-grey-dark.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.center {
  text-align: center;
}

.layered-tabs {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto;
}
@media (max-width: 1000px) {
  .layered-tabs {
    display: block;
  }
}
.layered-tabs > .header {
  grid-column: 1;
  grid-row: 1;
}
@media (max-width: 1000px) {
  .layered-tabs > .header {
    display: none;
  }
}
.layered-tabs > .header a {
  display: inline-block;
  color: #000;
  cursor: pointer;
  margin-right: 2rem;
}
.layered-tabs > .header a.active {
  color: #1f98a7;
  cursor: default;
  text-decoration: underline;
}
.layered-tabs > .tab {
  grid-column: 1;
  grid-row: 2;
}
.layered-tabs > .tab:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media (min-width: 1001px) {
  .layered-tabs > .tab > h3:first-child {
    display: none;
  }
  .layered-tabs > .tab:not(.active) {
    visibility: hidden;
  }
}

.honorar-link-button {
  background-color: #f4f4f4;
  border-radius: 8px;
  padding: 10px 20px;
}

a {
  color: #1f98a7;
  text-decoration: none;
  word-wrap: break-word;
}
a:hover {
  text-decoration: underline;
}

a.link-button {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  color: #fff;
  background-color: #1f98a7;
  border-radius: 8px;
  line-height: 1.2em;
  text-decoration: none;
  -webkit-hyphens: none;
          hyphens: none;
  margin: 0;
  padding: 0.2rem 0.5rem;
  width: 60%;
}
@media (max-width: 1000px) {
  a.link-button {
    width: 90%;
  }
}
@media (max-width: 600px) {
  a.link-button {
    width: 100%;
  }
}
a.link-button.icon-calendar::before, a.link-button.icon-phone::before, a.link-button.icon-mail::before, #header-contact > div > div > a.link-button.icon-mail::before, #header-contact > div > div > a.link-button.icon-phone::before, #header-contact > div > div > a.link-button.icon-calendar::before {
  content: "";
  display: block;
  background-color: #fff;
  -webkit-mask: center center/contain no-repeat;
          mask: center center/contain no-repeat;
  margin-right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
}
a.link-button.icon-mail::before {
  -webkit-mask-image: url("/assets/img/icon-mail.svg");
          mask-image: url("/assets/img/icon-mail.svg");
}
a.link-button.icon-phone::before {
  -webkit-mask-image: url("/assets/img/icon-phone.svg");
          mask-image: url("/assets/img/icon-phone.svg");
}
a.link-button.icon-calendar::before {
  -webkit-mask-image: url("/assets/img/icon-calendar.svg");
          mask-image: url("/assets/img/icon-calendar.svg");
}

form {
  font-size: 0.8rem;
  color: #4a4a4a;
}
form > * {
  margin: 0.7rem 0;
}
form > *:first-child {
  margin-top: 0;
}
form > *:last-child {
  margin-bottom: 0;
}
form input, form textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  box-sizing: border-box;
  background-color: #fff;
  border: none;
  border-radius: 4px;
  outline: none;
  font: inherit;
  font-size: 0.8rem;
  padding: 0.5rem 0.8rem;
  width: 100%;
}
form input[type=checkbox], form textarea[type=checkbox] {
  display: inline-block;
  box-sizing: content-box;
  border: 1px solid #4a4a4a;
  position: relative;
  padding: 0;
  width: 1rem;
  height: 1rem;
  vertical-align: -0.4rem;
}
form input[type=checkbox]:checked, form textarea[type=checkbox]:checked {
  background-color: #4a4a4a;
}
form input[type=checkbox]:checked::after, form textarea[type=checkbox]:checked::after {
  content: "";
  display: block;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  position: absolute;
  left: 0.15rem;
  top: 0.2rem;
  width: 0.6rem;
  height: 0.3rem;
  transform: rotate(-45deg);
}
form input[type=submit], form textarea[type=submit] {
  background-color: #1f98a7;
  color: #fff;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  width: auto;
}
form textarea {
  resize: vertical;
}
form .group {
  display: flex;
}
form .group > * {
  flex: 1;
  margin: 0;
}
form .group > :not(:last-child) {
  margin-right: 1rem;
}
@media (max-width: 800px) {
  form .group {
    flex-direction: column;
  }
  form .group > :not(:last-child) {
    margin-right: 0;
    margin-bottom: 0.7rem;
  }
}
form > .form-name {
  display: none;
}

footer {
  display: flex;
  justify-content: center;
  background-color: #08454d;
  color: #1f98a7;
  font-size: 0.85rem;
  padding: calc(var(--container-padding) * 0.8) var(--container-padding) 0 var(--container-padding);
}
@media (max-width: 800px) {
  footer {
    padding: calc(var(--container-padding)) var(--container-padding) 0 var(--container-padding);
  }
}
footer > .container {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  grid-template-rows: auto auto;
  max-width: 990px;
}
@media (max-width: 1200px) {
  footer > .container {
    grid-template-columns: 1fr 80px 1fr;
  }
}
footer > .container > div:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  padding-bottom: 4rem;
}
footer > .container > div:nth-child(1) img {
  margin-bottom: 1rem;
  width: auto;
  height: 4rem;
}
footer > .container > div:nth-child(1) .footer-description {
  font-size: 1.2rem;
  line-height: 1.3;
  text-transform: lowercase;
  margin-left: 1.5rem;
}
footer > .container > div:nth-child(1) .footer-description > strong {
  display: block;
}
footer > .container > div:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
  padding-bottom: 4rem;
}
@media (max-width: 1200px) {
  footer > .container > div:nth-child(2) .flex {
    flex-direction: column;
  }
}
footer > .container .copyright {
  grid-column: 1/-1;
  grid-row: 2;
  display: flex;
  justify-content: space-between;
  border-top: 2px solid #1f98a7;
  color: #f4f4f4;
  padding: 1rem 0 2rem;
}
footer > .container .copyright a {
  color: #f4f4f4;
}
@media (max-width: 600px) {
  footer > .container .copyright {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 800px) {
  footer > .container > div:nth-child(1) {
    padding-bottom: 1rem;
  }
  footer > .container > div::nth-child(2) {
    padding-bottom: 1rem;
  }
}
@media (max-width: 600px) {
  footer > .container {
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
  }
  footer > .container > div:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  footer > .container > div:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  footer > .container .copyright {
    grid-column: 1;
    grid-row: 3;
  }
}
footer .map {
  display: block;
  margin-bottom: 0.7rem;
}
footer .map > img {
  display: block;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: 250px;
  max-width: none;
}
footer .map-link {
  color: #fff;
  font-weight: 300;
}
footer .map-link::before {
  content: "";
  display: inline-block;
  background-color: #1f98a7;
  -webkit-mask: url("/assets/img/icon-arrow.svg") center center/contain no-repeat;
          mask: url("/assets/img/icon-arrow.svg") center center/contain no-repeat;
  margin-right: 0.7rem;
  width: 2rem;
  height: 1rem;
  vertical-align: -3px;
}/*# sourceMappingURL=index.css.map */