/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

body {
  font-family: var(--wp--preset--font-family--primary), serif;
}

.btn {
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.btn-primary {
  background-color: rgb(246, 244, 225);
  color: var(--wp--preset--color--blue, rgb(29, 34, 86));
  font-size: 19px;
  font-weight: 700;
  padding: 7px 30px;
  text-align: center;
}
.btn-primary:hover {
  background-color: var(--wp--preset--color--blue, rgb(29, 34, 86));
  color: rgb(246, 244, 225);
  border: 1px solid rgb(246, 244, 225);
}

footer {
  background-color: var(--wp--preset--color--blue, rgb(29, 34, 86));
  color: var(--wp--preset--color--footer, rgb(192, 173, 112));
  font-family: var(--wp--preset--font-family--serif), serif;
  margin: 0 auto;
  padding: 37px;
}
footer .container {
  --hpadding: calc((218 / 1920) * 100vw);
  margin: 0 auto;
  max-width: 1484px;
  width: 100%;
}
footer .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.5rem;
}
footer .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 25px;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  footer .contact-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
footer .contact-info .btn {
  margin-left: 18px;
}
footer .footer-utility-nav {
  font-family: var(--wp--preset--font-family--sans-serif), sans-serif;
}
footer .footer-utility-nav a {
  color: var(--wp--preset--color--white, rgb(255, 255, 255));
  font-size: 16px;
  line-height: 1.2;
}
footer .footer-utility-nav .menu-item {
  margin-right: 1.5rem;
}
footer .footer-utility-nav .menu-item:last-child {
  margin-right: 0;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav a {
  color: rgb(192, 173, 112);
  font-size: 22px;
  text-decoration: none;
}
nav .sub-menu a {
  color: var(--wp--preset--color--white, rgb(255, 255, 255));
  text-decoration: none;
}
nav .sub-menu a:hover {
  text-decoration: underline;
}

aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
aside .widget {
  min-width: 182px;
  margin-bottom: 1.5rem;
  margin-right: 100px;
}
aside .widget-title {
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
}
aside .widget_nav_menu .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
aside .widget_nav_menu .menu a {
  color: var(--wp--preset--color--white, rgb(255, 255, 255));
  text-decoration: none;
}
/*# sourceMappingURL=main.css.map */