@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --color-white-100: white;
  --color-white-200: #e6e6e6;
  --color-white-300: #cccccc;
  --color-white-400: #a6a6a6;
  --color-white-500: gray;
  --color-black-100: #55555e;
  --color-black-200: #3d3d43;
  --color-black-300: #242428;
  --color-black-400: #18181b;
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-medium-dark: 0 4px 6px -1px var(--color-white-500), 0 2px 4px -1px var(--color-black-100);
  --a-brand-clr: #006480;
  --a-brand-clr-light-500: #437e95;
  --a-brand-clr-light-400: #6b96a9;
  --a-brand-clr-light-300: #90b0be;
  --a-brand-clr-light-200: #b5c9d3;
  --a-brand-clr-light-100: #dae4e9;
  --a-brand-clr-dark-500: #0d161a;
  --a-brand-clr-dark-400: #12242c;
  --a-brand-clr-dark-300: #143440;
  --a-brand-clr-dark-200: #134455;
  --a-brand-clr-dark-100: #0e556a;
  --a-brand-clr-lighter-25: #107691;
  --a-brand-clr-darker-25: #0a4c5d;
  --a-brand-clr-oppo: #ff997e;
  --a-brand-clr-gray: #414141;
  --a-brand-clr-relm1: #900020;
  --a-brand-clr-relm2: #fd3f92;
  --a-brand-clr-relm3: #dc143c;
  --a-brand-clr-relf1: #f5f5dc;
  --a-brand-clr-relf2: #fffff0;
  --a-brand-clr-relf3: #ffd700;
  --a-brand-clr-relc1: #007aa5;
  --a-brand-clr-relc2: #006db0;
  --a-brand-clr-relc3: #317873;
  --grad-separator: linear-gradient(90deg, var(--a-brand-clr-light-200) 12%, var(--a-brand-clr) 51%, var(--a-brand-clr-light-100) 100%);
  --card-width: 21rem;
  --card-one-image-width: 21rem;
  --page-section-margin: 1.5rem 6rem;
  --form-field-background: var(--a-brand-clr-light-100);
  --form-field-border: 1px solid var(--a-brand-clr-light-300);
  --form-field-label-color: var(--a-brand-clr-dark-200);
  --form-field-label-color-dark: var(--a-brand-clr-light-300); }

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; }

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available; }

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black-400);
  background-color: var(--color-white-100); }
  body.darkmode {
    color: var(--color-white-100);
    background-color: var(--color-black-400); }

main {
  padding-top: 4.5rem;
  overflow: hidden; }

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover; }

.section {
  margin: 0 auto;
  padding: 5rem 0 2rem; }

.container {
  max-width: 75rem;
  height: auto;
  margin: 0 auto;
  padding: 0 1.25rem; }

.heading-xl {
  font-family: inherit;
  font-size: clamp(2.648rem, 6vw, 4.241rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  padding-bottom: 2.7rem; }

.heading-lg {
  font-family: inherit;
  font-size: clamp(2.179rem, 5vw, 3.176rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  padding-bottom: 2.1rem; }

.heading-md {
  font-family: inherit;
  font-size: clamp(1.794rem, 4vw, 2.379rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  padding-bottom: 1.5rem; }

.btn {
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  outline: none;
  border-radius: 0.3rem;
  text-transform: unset;
  background-color: var(--form-field-background);
  border: var(--form-field-border);
  padding: 0.6rem 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem; }
  .btn-darken {
    padding: 0.75rem 2rem;
    color: var(--color-white-100);
    background-color: var(--a-brand-clr-dark-100);
    box-shadow: var(--shadow-medium);
    border: none; }
    .darkmode .btn-darken {
      background-color: var(--a-brand-clr-light-500); }

#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background-color: var(--color-white-100);
  box-shadow: var(--shadow-medium); }
  .darkmode #header {
    background-color: var(--color-black-400);
    box-shadow: var(--shadow-medium-dark); }

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  width: 100%;
  height: 4rem;
  margin: 0 auto; }

.brand {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.25;
  margin-right: auto;
  letter-spacing: -1px;
  color: var(--a-brand-clr-light-500); }
  .darkmode .brand {
    color: var(--color-white-100); }

img.header-logo {
  height: 1.8rem;
  width: auto;
  vertical-align: middle;
  filter: drop-shadow(0px 2px 1px var(--a-brand-clr-light-200)); }

img.header-logo:hover {
  filter: none; }

.darkmode img.header-logo {
  filter: none; }

.menu {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 10;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: var(--color-black-400);
  background-color: var(--color-white-100);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease; }
  .darkmode .menu {
    color: var(--color-white-100);
    background-color: var(--color-black-400); }
  .menu.is-active {
    left: 0; }
  .menu-sep {
    width: 9rem;
    height: 2px;
    background-image: var(--grad-separator);
    border: 0; }
  .menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 1.25rem;
    margin-top: 7rem; }
  .menu-link,
  .menu-item > a {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: inherit;
    transition: all 0.3s ease;
    border-bottom: dotted 1px var(--color-white-300); }
  @media only screen and (min-width: 48rem) {
    .menu {
      position: relative;
      top: 0;
      left: 0;
      width: auto;
      height: auto;
      padding: 0rem;
      margin-left: auto;
      background: none;
      box-shadow: none;
      transition: unset; }
      .menu-inner {
        display: flex;
        flex-direction: row;
        column-gap: 2rem;
        margin: 0 auto; }
      .menu-link,
      .menu-item > a {
        color: inherit; } }

@media only screen and (min-width: 48rem) {
  .mobile-only {
    display: none;
    visibility: hidden; } }

@media only screen and (max-width: 48rem) {
  .desktop-only {
    display: none;
    visibility: hidden; } }

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: -1;
  z-index: 12;
  width: 1.6rem;
  height: 1.15rem;
  margin-right: 1.25rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease; }
  @media only screen and (min-width: 48rem) {
    .burger {
      display: none;
      visibility: hidden; } }
  .burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 3px;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 1rem;
    transform: rotate(0deg);
    background-color: var(--color-black-300);
    transition: 0.25s ease-in-out; }
    .darkmode .burger-line {
      background-color: var(--color-white-100); }
    .burger-line:nth-child(1) {
      top: 0px; }
    .burger-line:nth-child(2) {
      top: 0.5rem;
      width: 70%; }
    .burger-line:nth-child(3) {
      top: 1rem; }
  .burger.is-active .burger-line:nth-child(1) {
    top: 0.5rem;
    transform: rotate(135deg); }
  .burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
    visibility: hidden; }
  .burger.is-active .burger-line:nth-child(3) {
    top: 0.5rem;
    transform: rotate(-135deg); }

.theme-switch {
  display: block;
  cursor: pointer;
  margin: 0 0.5rem 0 3rem; }
  .darkmode .theme-switch > #light-icon,
  .theme-switch > #dark-icon {
    display: block;
    width: 1.2rem; }
  .darkmode .theme-switch > #light-icon {
    filter: invert(90%) drop-shadow(0px 0px 3px #ffff80); }
  .darkmode .theme-switch > #dark-icon,
  .theme-switch > #light-icon {
    display: none; }

.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 2rem; }
  @media only screen and (min-width: 48rem) {
    .banner-column {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      justify-content: center;
      margin-top: 4rem; } }
  @media only screen and (min-width: 64rem) {
    .banner-column {
      grid-template-columns: 1fr max-content;
      column-gap: 2rem; } }

.banner-image {
  display: block;
  max-width: 25rem;
  height: auto;
  object-fit: cover;
  justify-self: center; }
  @media only screen and (min-width: 48rem) {
    .banner-image {
      order: 1;
      max-width: 28rem;
      height: auto; } }
  @media only screen and (min-width: 64rem) {
    .banner-image {
      max-width: 33rem;
      height: auto; } }

.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.5rem; }

.herobanner {
  padding-top: 3rem; }

.cards {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;
  height: auto; }

.card {
  width: var(--card-width);
  height: auto;
  flex: 0 0 auto;
  margin: 0.75rem 0.75rem;
  border: none;
  outline: none;
  border-radius: 0.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
  .card-image {
    width: 100%;
    height: auto; }
  .card-image img {
    object-fit: cover; }
  .card-text {
    width: 100%;
    padding: 1rem;
    font-size: 90%; }
  .card-text > h3 {
    font-size: 120%;
    padding-bottom: 1rem; }

.card-one {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto; }
  .card-one.nowrap {
    flex-wrap: nowrap; }
  .card-one.large-img {
    --card-one-image-width: 50%; }
  .card-one-image {
    display: block;
    width: var(--card-one-image-width); }
  .card-one-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 100%; }
  .card-one.large-img img {
    border: 3px solid transparent;
    border-radius: 0.45rem;
    background: linear-gradient(white, white) padding-box, linear-gradient(to top, var(--a-brand-clr) 0%, var(--a-brand-clr-oppo) 50%, var(--a-brand-clr) 100%) border-box;
    box-shadow: 0 0 0.5rem var(--a-brand-clr-light-400); }
  .card-one-text {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    width: calc(100% - var(--card-one-image-width)); }
  @media only screen and (max-width: 48rem) {
    .card-one-image {
      display: none; }
    .card-one-text {
      width: 100%; } }

.page-section {
  margin: var(--page-section-margin); }

.is-anchor {
  padding-top: 5rem; }
  @media only screen and (max-width: 48rem) {
    .is-anchor {
      padding-top: 4rem; } }

p {
  text-wrap: wrap;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem; }

a {
  color: var(--a-brand-clr-light-500);
  border-bottom: dotted 1px var(--a-brand-clr-light-200);
  text-decoration: none; }

a:hover {
  color: var(--a-brand-clr-light-300);
  border-bottom-color: transparent; }

a.brand,
.menu-item > a {
  border-bottom-color: transparent; }

.contact-details {
  padding: 1.2rem 0 0 1rem; }
  @media only screen and (max-width: 48rem) {
    .contact-details {
      margin-top: 3rem; } }

.form-fields {
  display: flex;
  flex-flow: row wrap;
  width: 100%; }

.form-field {
  padding: 1.2rem 0 0 1rem;
  width: calc(100% - 1rem); }

.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
  width: 100%;
  background: var(--form-field-background);
  border: var(--form-field-border);
  border-radius: 0.3rem;
  padding: 3px;
  font-size: 1rem; }

.form-field input[type="text"],
.form-field input[type="email"] {
  height: 2.1rem; }

.form-field input[type="submit"] {
  height: 2.1rem;
  padding: 0 1.8rem;
  background: var(--form-field-background);
  border: var(--form-field-border);
  border-radius: 0.3rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: bold; }

.form-field label {
  color: var(--form-field-label-color);
  font-size: 1rem;
  font-weight: bold; }

.darkmode .form-field label {
  color: var(--form-field-label-color-dark); }

.font-icon {
  height: 1rem;
  width: auto;
  display: inline-block;
  filter: opacity(75%); }
  .darkmode .font-icon {
    filter: invert(90%) opacity(75%); }

.copyright {
  font-size: 0.9rem;
  border: 2px solid;
  border-image-slice: 1;
  border-image-source: var(--grad-separator);
  border-left: 0;
  border-right: 0;
  border-top-width: 1px;
  padding: 1rem;
  margin: 1rem;
  width: calc(99% - 3rem);
  text-align: center; }

.to-top-arrow {
  display: block;
  background-color: var(--a-brand-clr-light-100);
  text-align: center;
  width: 3.1rem;
  height: 3rem;
  border-radius: 100%; }

.to-top-arrow > a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-bottom: none; }

.to-top-arrow img {
  height: 2.1rem;
  width: auto;
  margin-top: 0.45rem; }

#footer {
  padding: 1rem 1rem 6rem 1rem; }

.a-font-smaller {
  font-size: 0.9rem; }

ul.alist,
ul.multicolumn {
  list-style: none;
  margin-left: 0.45rem; }

.alist li::before {
  content: '\221E';
  color: var(--a-brand-clr-light-500);
  margin-right: 0.3rem;
  flex-shrink: 0; }

.alist li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.3rem; }

ul.multicolumn {
  display: flex;
  flex-flow: row wrap; }

.multicolumn li {
  width: 25%;
  min-width: 10rem; }
  @media only screen and (max-width: 48rem) {
    .multicolumn li {
      width: 50%; } }
