@font-face {
  font-family: "Roboto";
  src: url("https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me5WZLCzYlKw.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlvAw.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  background-color: #fafafa;
}
body h1 {
  font-weight: 700;
  font-size: 2em;
  margin-bottom: 1em;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fafafa;
  padding: 0.5em 0 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
nav .nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.5em;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
}
@media (max-width: 576px) {
  nav .nav-wrapper {
    flex-direction: column;
  }
}
nav .nav-base {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
nav .nav-base img {
  height: 3em;
  margin: 0.5em;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 0.5em;
  margin-left: auto;
  align-items: center;
}
nav ul a {
  text-decoration: none;
  color: #181819;
  padding: 0.5em 1em;
  border-radius: 4px;
}
nav ul a {
  transition: opacity 0.3s;
}
nav ul a:hover {
  opacity: 75%;
}
@media (max-width: 576px) {
  nav ul {
    display: none;
    margin-top: 1em;
  }
  nav ul li {
    margin: 0.5em auto;
    text-align: center;
  }
}
nav .hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5em;
}
@media (max-width: 576px) {
  nav .hamburger {
    display: block;
  }
}
nav .CTA-nav a {
  padding: 0.75em 1em;
  margin-left: 0.5em;
  background: #416d82;
  color: #fafafa;
  border-radius: 4px;
  text-decoration: none;
}
nav .CTA-nav a {
  transition: opacity 0.3s;
}
nav .CTA-nav a:hover {
  opacity: 75%;
}
@media (max-width: 576px) {
  nav .nav-wrapper {
    padding: 1em 2em;
  }
  nav ul {
    flex-direction: column;
    text-align: center;
    gap: 1em;
    margin-left: 0;
    font-size: 1.125em;
  }
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.5em;
  max-width: 1200px;
  padding: 7.5em 2em 2em;
}
@media (max-width: 576px) {
  .content-wrapper {
    padding: 10em 2em 2em;
  }
}

footer {
  background: #f1ebec;
  padding: 2em;
}
footer .footer-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.5em;
  display: flex;
  gap: 2.5em;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  footer .footer-content-wrapper {
    justify-content: left;
    margin: auto;
  }
}
footer .footer-content h3 {
  margin-bottom: 1em;
}
footer .footer-content ul {
  list-style: none;
}
footer .footer-content ul li {
  margin-bottom: 0.5em;
}
footer .footer-content ul a {
  color: #181819;
}
footer .footer-content ul a:hover {
  color: #416d82;
}
@media (max-width: 576px) {
  footer .footer-content {
    width: 100%;
  }
}
footer .footer-map-wrapper {
  height: 200px;
  background: #ddd;
  width: 320px;
}
footer .footer-bootom-line {
  margin-top: 2em;
  text-align: center;
  padding-top: 1em;
  border-top: 1px solid #ddd;
}

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