:root {
  --accent: #29bce1;
  --text: #000;
  --muted-background: #f5f5f5;
  --footer: #000;
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/assets/fonts/lato-300-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/lato-400-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/lato-700-latin.woff2") format("woff2");
}

@font-face {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
  font-display: block;
  src: url("/assets/fonts/fontawesome-4.6.1.woff2") format("woff2");
}

@font-face {
  font-family: "vc_openiconic";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/assets/fonts/vc-openiconic.woff") format("woff");
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-location-arrow::before {
  content: "\f124";
}

.fa-phone::before {
  content: "\f095";
}

.fa-envelope-o::before {
  content: "\f003";
}

.vc-oi-dial::before {
  content: "\e800";
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: #000;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.site-shell {
  width: 100%;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 20000;
  padding: 8px 12px;
  background: #fff;
  color: #000;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 10;
  min-height: 99px;
  background: #fff;
}

.header-inner {
  text-align: center;
}

.site-title {
  display: inline-block;
  margin-top: 25px;
  padding: 10px 0 25px;
  color: var(--accent);
  font-size: 25px;
  font-weight: 400;
  line-height: 20px;
}

.site-title:hover,
.site-title:focus-visible {
  color: var(--accent);
}

.intro {
  padding: 10px 0 30px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intro-item {
  display: grid;
  grid-template-columns: 16.666% 1fr;
  min-height: 1px;
  padding: 0 15px;
  align-items: center;
}

.intro-item p {
  margin: 0 0 10px;
}

.intro-symbol {
  display: inline-block;
  width: 30px;
  height: 30px;
  color: var(--accent);
  font-family: "vc_openiconic";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.map-section {
  width: 100%;
}

.map-placeholder,
.map-frame {
  width: 100%;
  height: 450px;
  border: 0;
}

.map-placeholder {
  display: grid;
  place-items: center;
  background: #e5e3df;
  background-image:
    linear-gradient(30deg, rgba(255,255,255,.32) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.32) 87.5%),
    linear-gradient(150deg, rgba(255,255,255,.32) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.32) 87.5%);
  background-size: 80px 140px;
}

.map-consent {
  max-width: 390px;
  padding: 22px 28px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .14);
  text-align: center;
}

.map-consent p {
  margin: 0 0 12px;
}

.map-button {
  padding: 8px 16px;
  border: 0;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
}

.contact-facts {
  padding: 10px 0 15px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fact-item {
  min-height: 100px;
  padding: 0 15px;
}

.fact-icon {
  position: relative;
  z-index: 1;
  float: left;
  display: inline-block;
  width: 80px;
  height: 80px;
  margin-bottom: -10px;
  color: var(--accent);
  font-size: 62px;
  line-height: 80px;
  text-align: center;
}

.fact-icon:hover {
  color: #000;
}

.fact-text {
  position: relative;
  padding-left: 100px;
  text-align: left;
}

.fact-text h2 {
  margin: 10px 0;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  line-height: 34px;
}

.fact-text p {
  margin: 0 0 10px;
}

.fact-text a {
  color: #000;
}

.fact-text a:hover,
.fact-text a:focus-visible {
  color: var(--accent);
}

.appointment {
  padding: 30px 0 5px;
  background: var(--muted-background);
}

.appointment h2 {
  margin: 20px 0 10px;
  padding-bottom: 20px;
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
}

.contact-form p {
  margin: 20px 0 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 5px;
  border: 1px solid #999;
  border-radius: 4px;
  background: #fff;
}

.contact-form input {
  width: 50%;
}

.contact-form textarea {
  min-height: 250px;
  margin-bottom: 20px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(41, 188, 225, .25);
}

.submit-button {
  display: inline-block;
  padding: 10px 25px;
  border: 0;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-size: 17px;
  text-transform: uppercase;
  transition: background .2s ease-out;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: #000;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 24px;
}

.form-status.is-success {
  color: #176b31;
  font-weight: 700;
}

.form-status.is-error {
  color: #9c1c1c;
  font-weight: 700;
}

.site-footer {
  min-height: 24px;
  padding: 0;
  background: var(--footer);
  color: #fff;
  font-size: 13px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ccc;
}

.cookie-notice {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 10000;
  max-width: calc(100% - 60px);
  margin-left: 5%;
  padding: 8px 21px;
  border-radius: 5px;
  background: rgba(0, 0, 0, .85);
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
}

.link-button {
  padding: 0;
  border: 0;
  border-bottom: 1px dotted currentColor;
  background: transparent;
  color: inherit;
}

.cookie-accept {
  width: 100px;
  margin-left: 20px;
  padding: 5px 0;
  border: 1px solid #bbb;
  border-radius: 5px;
  background: #e3e3e3;
  color: #333;
  font: 700 12px/1 "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.cookie-dialog {
  width: min(680px, calc(100% - 40px));
  padding: 50px;
  border: 0;
  background: rgba(0, 0, 0, .9);
  color: #fff;
}

.cookie-dialog::backdrop {
  background: rgba(0, 0, 0, .35);
}

.legal-content {
  padding-bottom: 24px;
}

.legal-content h1 {
  margin: 20px 0 10px;
  font-size: 38px;
  font-weight: 400;
  line-height: 38px;
  text-align: center;
}

.legal-content p {
  margin: 0 0 10px;
}

.legal-content .legal-intro {
  text-align: center;
}

.error-page {
  min-height: calc(100vh - 123px);
  padding: 70px 15px;
  text-align: center;
}

.error-page h1 {
  margin: 0;
  color: #444;
  font-size: 120px;
  line-height: 1;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

@media (max-width: 1025px) {
  .site-header {
    min-height: 81px;
  }

  .site-title {
    font-size: 25px;
  }

  .appointment h2,
  .legal-content h1 {
    font-size: 25px;
    line-height: 30px;
  }

  .fact-text h2 {
    font-size: 13px;
    line-height: 16px;
  }
}

@media (max-width: 767px) {
  .site-title {
    display: block;
    width: 65%;
    margin-right: auto;
    margin-left: auto;
    line-height: 25px;
  }

  .intro-grid,
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .intro-item {
    grid-template-columns: 48px 1fr;
    margin-bottom: 12px;
  }

  .fact-item {
    margin-bottom: 12px;
  }

  .contact-form input {
    width: 100%;
  }

  .map-placeholder,
  .map-frame {
    height: 360px;
  }

  .cookie-notice {
    right: 15px;
    bottom: 15px;
    max-width: calc(100% - 30px);
    margin: 0;
  }

  .cookie-accept {
    margin-top: 8px;
    margin-left: 8px;
  }
}
