@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Syne:wght@700&display=swap");
html, body {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  color: #000;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 0;
  background: white;
  z-index: 10000;
  box-shadow: 1px 1px 25px rgba(0, 0, 0, 0.15);
}

.nav-phone {
  padding: 0 1.5rem;
}
.nav-phone > span {
  display: block;
}

.uk-nav .contact-label:first-of-type {
  margin-top: 1rem;
}

.uk-nav > li a:hover {
  background-color: #EFEFEF;
}

.main-menu {
  border: 1px solid #0065BD;
}

.main-menu > .uk-nav > li a {
  color: #000;
}

.site-logo {
  height: 3rem;
}

.phonebox {
  display: inline-block;
  padding: 0.75rem 1.5rem 0.75rem 0;
}

section {
  padding-top: 5vh;
  padding-bottom: 5vh;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  min-height: calc(50vh + 6rem);
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 960px) {
  .hero {
    justify-content: flex-end;
  }
}
.hero.no-image {
  min-height: 25vh;
}
.hero-content {
  height: 100%;
  padding-bottom: 1rem;
  max-width: 90vw;
  overflow: hidden;
}
.hero-content > p {
  font-size: 125%;
  margin-top: 0;
}
.hero:has(.hero-home) {
  min-height: 60vh;
}
.hero h1 {
  margin-bottom: 0;
  font-family: "Syne", sans-serif;
  text-transform: uppercase;
  font-size: 3rem;
  line-height: 1.15em;
  text-shadow: 1px 2px 10px #666;
}
.hero h1.page-title {
  font-size: 3.5rem;
  line-height: 1em;
}
@media screen and (max-width: 640px) {
  .hero h1 {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 360px) {
  .hero h1 {
    font-size: 1.25rem;
  }
}

.hero-menu ul {
  display: flex; /* Aligns <li> items in a row */
  justify-content: center; /* Centers the <li> items horizontally */
  padding: 0;
  margin: 0;
  align-items: center; /* Optional: Vertically centers the <ul> within the page */
}
.hero-menu li {
  list-style: none; /* Removes default list bullets */
  margin: 0 0.5rem; /* Optional: Adds space between list items */
  padding: 5.5rem 1rem 0.5rem 1rem;
  transition: 0.2s ease;
  background: rgba(0, 101, 189, 0.75);
}
.hero-menu li > a {
  color: white;
}
.hero-menu li > a:visited {
  color: white;
}
.hero-menu li:hover {
  background: #0065BD;
  transform: translateY(1rem);
}

.text-w-bg {
  display: inline-block;
  background: #0065BD;
  font-size: 1.4em;
  color: #FFF;
}

.with-image h1 > span {
  display: inline;
  padding: 0.25rem 0;
  background: #0065BD;
}

.article-image {
  text-align: center;
}

@media screen and (max-width: 960px) {
  .home-section {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 960px) {
  .grid-content {
    padding-bottom: 2rem;
  }
}

.grid-background {
  min-height: 40vh;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 540px) {
  .grid-background {
    min-height: 25vh;
  }
}

h1, h2, h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: bold;
}

.footer-contact {
  list-style: none;
  padding-left: 0;
}
.footer-contact > li {
  padding: 0.25rem 0;
}
.footer-contact > li:hover {
  background: white;
}

.contact-label {
  display: inline-block;
  text-transform: uppercase;
  color: #0065BD;
  font-weight: bold;
  font-size: 80%;
  letter-spacing: 2px;
  min-width: 5rem;
}

.section-title {
  margin-bottom: 0;
  color: #0065BD;
}

.section-sub-title {
  display: inline-block;
  font-size: 125%;
  line-height: 1.15em;
  color: #0065BD;
  margin-top: 0;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #0065BD;
}

.uk-light .section-sub-title {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.bg-main {
  background-color: #0065BD;
}

.bg-lightgrey {
  background-color: #EFEFEF;
}/*# sourceMappingURL=style.css.map */