.h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

.h4 {
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f18510;
}

.h5 {
  font-family: "Barlow", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
  color: #80a8bf;
}

.lead {
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 300;
  line-height: 1.5;
  color: #003856;
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-accent {
  color: #f18510;
}

.text-blue {
  color: #80a8bf;
}

.text-dark-blue {
  color: #003856;
}

.text-white {
  color: #ffffff;
}

.text-muted {
  color: #5a7a8e;
}

.weight-300 {
  font-weight: 300;
}

.weight-400 {
  font-weight: 400;
}

.weight-600 {
  font-weight: 600;
}

.weight-700 {
  font-weight: 700;
}

.weight-800 {
  font-weight: 800;
}

.btn-core {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  font-family: "Barlow", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-core--accent {
  background: #f18510;
  color: #ffffff;
}
.btn-core--accent:hover {
  background: #cc700c;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(241, 133, 16, 0.35);
}
.btn-core--outline {
  border: 1.5px solid #80a8bf;
  color: #80a8bf;
  background: transparent;
}
.btn-core--outline:hover {
  border-color: #f18510;
  color: #f18510;
}
.btn-core--outline-white {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  background: transparent;
}
.btn-core--outline-white:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
.btn-core--lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
  letter-spacing: 0.03em;
}
.btn-core i {
  font-size: 1.1em;
}

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
#main-nav button {
  border: none;
  background-color: unset;
}
#main-nav.nav--transparent {
  background: transparent;
}
#main-nav.nav--transparent .nav-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  box-shadow: 0 10px 100px rgb(21, 127, 185);
}
#main-nav.nav--scrolled {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid #dce8f0;
  padding-block: 0.625rem;
}
#main-nav.nav--scrolled .nav-logo {
  padding: 0;
  background-color: transparent;
  box-shadow: none;
}
#main-nav.nav--scrolled .nav-links a {
  color: #1a2e3b;
}
#main-nav.nav--scrolled .nav-links a:hover {
  color: #f18510;
}
#main-nav.nav--scrolled .nav-links a.is-active {
  color: #003856;
  font-weight: 700;
  background: rgba(0, 56, 86, 0.06);
}
#main-nav.nav--scrolled .btn-core--outline {
  border-color: #80a8bf;
  color: #80a8bf;
}
#main-nav.nav--scrolled .btn-core--outline:hover {
  border-color: #f18510;
  color: #f18510;
}

.nav-inner {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-sizing: border-box;
}

.nav-logo {
  position: relative;
  flex-shrink: 0;
  margin-right: auto;
  padding: 1.25rem 1.75rem;
  background-color: white;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
}
.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .nav-logo img {
    height: 36px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
}
.nav-links a {
  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 0.75rem;
  border-radius: 3px;
  transition: color 0.3s ease, background 0.3s ease;
  white-space: nowrap;
}
.nav-links a:hover {
  color: #f18510;
  background: rgba(255, 255, 255, 0.1);
}
.nav-links a.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
}
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .nav-actions {
    display: none;
  }
}

.nav-toggle-wrapper {
  display: none;
  flex-direction: row;
}
@media (max-width: 1024px) {
  .nav-toggle-wrapper {
    display: flex;
  }
}
.nav-toggle-wrapper .lang-dropdown {
  border: none;
  padding: 0.5rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
  cursor: pointer;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }
}

.nav--scrolled .nav-toggle span {
  background: #003856;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #003856;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
}
.nav-mobile.is-open {
  display: flex;
}
.nav-mobile a {
  font-family: "Barlow", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.85;
}
.nav-mobile a:hover {
  opacity: 1;
  color: #f18510;
}
.nav-mobile .nav-mobile-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.nav-mobile .nav-mobile-actions .btn-core {
  width: 100%;
  justify-content: center;
}

.social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
@media (max-width: 768px) {
  .social-sidebar {
    display: none;
  }
}
.social-sidebar__link {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #003856;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease, background 0.3s ease;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.social-sidebar__link:first-child {
  border-radius: 4px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.social-sidebar__link:last-child {
  border-radius: 0 0 0 4px;
}
.social-sidebar__link i {
  font-size: 0.9375rem;
  transition: transform 0.3s ease;
}
.social-sidebar__link:hover {
  background: #f18510;
  color: #ffffff;
}
.social-sidebar__link:hover i {
  transform: scale(1.15);
}

.site-footer {
  background: #061520;
  color: rgba(255, 255, 255, 0.6);
  padding-block: 4rem 2rem;
}
.site-footer__inner {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  width: 100%;
  box-sizing: border-box;
}
.site-footer__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer__top > div:first-of-type {
  display: block;
  width: 100%;
}
@media (min-width: 1025px) {
  .site-footer__top > div:first-of-type {
    width: auto;
  }
}
.site-footer__top > div:last-of-type {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  width: 100%;
}
@media (min-width: 1025px) {
  .site-footer__top > div:last-of-type {
    width: auto;
    flex-wrap: nowrap;
    gap: inherit;
  }
}
.site-footer__top > div:last-of-type > div {
  min-width: 110px;
}
.site-footer__logo img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}
.site-footer__icon img {
  height: 24px;
  width: auto;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}
.site-footer__tagline {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.site-footer__tagline > span {
  display: block;
  margin-bottom: 20px;
}
.site-footer__col-title {
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
  padding: 0;
}
.site-footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}
.site-footer__links a:hover {
  color: #ffffff;
}
.site-footer__bottom {
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__bottom .scroll-top {
    align-self: flex-end;
  }
}
.site-footer__copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}
.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-footer__legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
}
.site-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.scroll-top {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.scroll-top i {
  font-size: 1rem;
}
.scroll-top:hover {
  background: #f18510;
  border-color: #f18510;
  color: #ffffff;
  transform: translateY(-3px);
}

/* import file for a variety of colors */
/* various useful variables and mixins */
.lang-dropdown {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang-dropdown a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.lang-dropdown .dropdown-header {
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  color: #003855;
  transition: all 0.2s ease-in-out;
}
.lang-dropdown .dropdown-header:hover {
  opacity: 0.7;
}
.lang-dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  z-index: 1;
  top: 115px;
  padding: 1rem;
  border-radius: 6px;
  border-top: 1px solid #003855;
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.1333333333);
}
.lang-dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.lang-dropdown a {
  margin: 0 0.3rem;
}
.lang-dropdown a img, .lang-dropdown a picture {
  width: 40px;
}
.lang-dropdown .dropdown-header {
  height: 35px;
  width: 3rem;
  color: white;
  font-size: 0.7rem;
  justify-content: center;
}
.lang-dropdown .dropdown-header img {
  width: auto;
  height: 16px;
}
.lang-dropdown .dropdown-header:hover {
  opacity: 1;
}
.lang-dropdown .dropdown-content {
  top: 35px;
  inset-inline-end: 3px;
  min-width: 0;
}
.lang-dropdown .dropdown-content *:hover {
  opacity: 0.7;
}
.lang-dropdown:hover .dropdown-content {
  display: none;
}
.lang-dropdown.open .dropdown-content {
  display: flex;
  flex-direction: row;
  align-items: center;
}

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