@font-face {
  font-display: swap;
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/inter-tight-v7-latin-300.woff2") format("woff2"), url("/assets/fonts/inter-tight-v7-latin-300.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/inter-tight-v7-latin-regular.woff2") format("woff2"), url("/assets/fonts/inter-tight-v7-latin-regular.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/inter-tight-v7-latin-700.woff2") format("woff2"), url("/assets/fonts/inter-tight-v7-latin-700.ttf") format("truetype");
}
:root {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  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: 1fr 1.9fr;
}
header.small {
  grid-template-rows: 1fr;
}
header > img.logo {
  grid-column: 2;
  grid-row: 1;
  z-index: 2;
  display: block;
  width: auto;
  height: 4.5rem;
  margin: 2.2rem 0;
}
header > div {
  grid-column: 2;
  grid-row: 2;
  z-index: 3;
  text-transform: lowercase;
}
header > div > span {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 300;
  display: block;
}
@media (max-width: 800px) {
  header > div > span {
    font-size: 2rem;
  }
}
header > div > span > strong {
  font-weight: 700;
}
header > div > span:nth-child(2) {
  margin-top: 2rem;
}
header > img.banner {
  grid-column: 1/-1;
  grid-row: 1/-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: 900px) {
  header > img.banner {
    height: 450px;
  }
}
@media (max-width: 600px) {
  header {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  header > img.logo {
    grid-column: 1;
    grid-row: 1;
    content: url("/assets/logo-small.svg");
    margin: 0;
    padding: var(--container-padding);
    height: 3rem;
  }
}
@media (max-width: 600px) and (max-width: 400px) {
  header > img.logo {
    height: 2.5rem;
  }
}
@media (max-width: 600px) {
  header > div {
    grid-column: 1;
    grid-row: 2;
    background-color: #33404e;
    color: #fff;
    margin: 0;
    padding: var(--container-padding);
  }
  header > div > 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;
    height: auto;
    min-height: 350px;
  }
}

#menu-button {
  cursor: pointer;
  position: fixed;
  top: 3rem;
  right: 3rem;
  width: 40px;
  height: 35px;
  z-index: 11;
}
@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: #ef7c0a;
  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;
  background-color: #ef7c0a;
  color: #fff;
  transition: transform 0.2s ease-in-out;
  --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: 800px) {
  nav {
    --menu-width: 350px;
    padding: calc(var(--container-padding) + 35px + var(--container-padding)) var(--container-padding) var(--container-padding);
  }
}
@media (max-width: 400px) {
  nav {
    --menu-width: 300px;
  }
}
body.menu-open nav {
  transform: translateX(calc(var(--menu-width) * -1));
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  position: relative;
  margin: 0;
  padding: 0;
}
nav ul li a {
  display: block;
  color: inherit;
  font-weight: 400;
  line-height: 1.2;
  padding: 0.8rem 0;
}
nav ul li a:hover {
  text-decoration: none;
}
nav ul li.active a {
  font-weight: 700;
}
nav ul li.active::before {
  content: "";
  display: block;
  background-color: #fff;
  -webkit-mask: url("/assets/icon-menu.svg") center center/contain no-repeat;
          mask: url("/assets/icon-menu.svg") center center/contain no-repeat;
  position: absolute;
  left: -1.2rem;
  top: 1rem;
  width: 0.7rem;
  height: 0.7rem;
}
nav > a {
  display: flex;
  align-items: center;
  border-radius: 15px;
  background-color: #fff;
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.2;
  margin-top: auto;
  padding: 0.8rem 1rem 0.8rem 0.8rem;
}
nav > a:hover {
  text-decoration: none;
}
nav > a::before {
  content: "";
  display: block;
  background-color: #ef7c0a;
  -webkit-mask: url("/assets/icon-arrow.svg") center center/contain no-repeat;
          mask: url("/assets/icon-arrow.svg") center center/contain no-repeat;
  margin-right: 1rem;
  width: 2rem;
  height: 1rem;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--container-padding);
}
section.gray {
  background-color: #f4f4f4;
}
section > .container {
  flex: 1;
  display: flex;
  width: 100%;
  max-width: 1200px;
}
@media (max-width: 800px) {
  section > .container {
    flex-direction: column;
  }
}
section > .container > div:nth-child(1) {
  flex: 1;
}
@media (max-width: 800px) {
  section > .container > div:nth-child(1) {
    flex: auto;
  }
}
section > .container > div:nth-child(2) {
  flex: 2;
  margin-left: 120px;
  position: relative;
}
@media (max-width: 1000px) {
  section > .container > div:nth-child(2) {
    margin-left: 80px;
  }
}
@media (max-width: 800px) {
  section > .container > div:nth-child(2) {
    flex: auto;
    margin-left: 0;
    margin-top: 2rem;
  }
}
section > .container > .separator-left::before {
  content: "";
  display: block;
  background-color: #ef7c0a;
  position: absolute;
  left: -50px;
  width: 2px;
  height: 100%;
}
@media (max-width: 1000px) {
  section > .container > .separator-left::before {
    left: -30px;
  }
}
@media (max-width: 800px) {
  section > .container > .separator-left::before {
    display: none;
  }
}

.content h2 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0 0 1.5rem 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: 700;
  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/icon-family.svg");
}
.content h3.icon-money::before {
  background-image: url("/assets/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 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: #ef7c0a;
  -webkit-mask: url("/assets/icon-list.svg") center center/contain no-repeat;
          mask: url("/assets/icon-list.svg") center center/contain no-repeat;
  position: absolute;
  left: -1.2rem;
  top: 0.5rem;
  width: 0.7rem;
  height: 0.7rem;
}
.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 {
    flex-direction: column;
  }
}
.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 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;
  max-width: 300px;
}
.content img:first-child {
  margin-top: 0;
}
.content img:last-child {
  margin-bottom: 0;
}
.content img.circle {
  border-radius: 50%;
}
.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;
}

.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: #ef7c0a;
  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;
  }
}

a {
  color: #ef7c0a;
  font-weight: 700;
  text-decoration: none;
  word-wrap: break-word;
}
a:hover {
  text-decoration: underline;
}

a.link-button {
  display: inline-flex;
  align-items: center;
  color: #fff;
  background-color: #ef7c0a;
  border-radius: 4px;
  line-height: 1.3;
  text-decoration: none;
  -webkit-hyphens: none;
          hyphens: none;
  padding: 0.5rem 1rem;
}
a.link-button.icon-calendar::before, a.link-button.icon-phone::before {
  content: "";
  display: block;
  background-color: #fff;
  -webkit-mask: center center/contain no-repeat;
          mask: center center/contain no-repeat;
  margin-right: 0.7rem;
  width: 1.2rem;
  height: 1.2rem;
}
a.link-button.icon-phone::before {
  -webkit-mask-image: url("/assets/icon-phone.svg");
          mask-image: url("/assets/icon-phone.svg");
}
a.link-button.icon-calendar::before {
  -webkit-mask-image: url("/assets/icon-calendar.svg");
          mask-image: url("/assets/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: #ef7c0a;
  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;
  }
}

footer {
  display: flex;
  justify-content: center;
  background-color: #33404e;
  color: #fff;
  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 120px 2fr;
  grid-template-rows: auto auto;
  max-width: 1200px;
}
@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 #9a9a9a;
  color: #9a9a9a;
  padding: 1rem 0 2rem;
}
@media (max-width: 600px) {
  footer > .container .copyright {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@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: 200px;
  max-width: none;
}
footer .map-link {
  color: #fff;
  font-weight: 400;
}
footer .map-link::before {
  content: "";
  display: inline-block;
  background-color: #ef7c0a;
  -webkit-mask: url("/assets/icon-arrow.svg") center center/contain no-repeat;
          mask: url("/assets/icon-arrow.svg") center center/contain no-repeat;
  margin-right: 0.7rem;
  width: 2rem;
  height: 1rem;
  vertical-align: -3px;
}/*# sourceMappingURL=index.css.map */