﻿html, body {
  font-size: 16px;
  font-family: Verdana;
  width: 100%;
  margin: 0;
  padding: 0;
}

a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #39c4f1;
}

.width-100 {
  width: 100%;
}

.cursor-pointer {
  cursor: pointer;
}

.user-select-none {
  user-select: none;
}

.overlap {
  display: grid;
  align-items: center;
  justify-items: center;
}
.overlap * {
  grid-column: 1;
  grid-row: 1;
}

.primary {
  color: #39c4f1;
}

.margin-center {
  margin: 0 auto;
}

.no-margin-bottom {
  margin-bottom: 0;
}

img.limit-40 {
  width: 100%;
  max-width: 40rem;
}

@media only screen and (max-width: 1320px) {
  .mobile-display-none {
    display: none !important;
  }
  .mobile-display-block {
    display: block !important;
  }
  .mobile-display-flex {
    display: flex !important;
  }
}
@media only screen and (min-width: 1321px) {
  .desktop-display-none {
    display: none !important;
  }
  .desktop-display-block {
    display: block !important;
  }
  .desktop-display-flex {
    display: flex !important;
  }
}
@font-face {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 100 700;
  src: url("../fonts/google.icons.woff2") format("woff2");
}
.icon {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  text-transform: none;
  display: inline-block;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.flex {
  display: flex;
  flex-direction: row;
}
.flex.flex-vertical {
  flex-direction: column;
}
.flex.flex-align-start {
  align-items: start;
}
.flex.flex-align-center, .flex.flex-center {
  align-items: center;
}
.flex.flex-justify-center, .flex.flex-center {
  justify-content: center;
}
.flex.flex-justify-space-between {
  justify-content: space-between;
}
.flex.flex-gap {
  gap: var(--flex-gap, 1rem);
}
.flex.flex-limit-width {
  max-width: 75rem;
  margin: 0 auto;
}
@media only screen and (max-width: 720px) {
  .flex.flex-vertical--small-screen {
    flex-direction: column;
  }
}

.flex-align-self-center {
  align-self: center;
}

.flex-grow {
  flex-grow: 1;
}

.button {
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  border: 0.0625rem solid #042b38;
  border-radius: 0.25rem;
  background: #39c4f1;
  color: #fff;
  transition: 0.2s background;
  white-space: nowrap;
  font-size: 1rem;
}
.button:hover {
  color: #fff;
  background: #0a6c8b;
}
.button.button-large {
  margin: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.5rem;
}
.button.button-no-border {
  border: none;
}
.button.inverse {
  color: #fff;
  border: 0.0625rem solid #fff;
  background: #39c4f1;
}
.button.inverse:hover {
  color: #fff;
  background: #0a6c8b;
}

.text-white {
  color: #fff;
}

.text-bold {
  font-weight: bold;
}

.text-size-1_5 {
  font-size: 1.5rem;
}

.text-size-2 {
  font-size: 2rem;
}

.text-size-3 {
  font-size: 3rem;
}

.text-size-5 {
  font-size: 5rem;
}

.text-stroke {
  -webkit-text-stroke: 1px #fff;
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

ul {
  column-gap: 5rem;
}
ul.column-2 {
  column-count: 2;
}
ul.column-3 {
  column-count: 3;
}
ul.padding {
  padding: 2rem 4rem;
}
ul li {
  padding-bottom: 1rem;
}
@media only screen and (max-width: 720px) {
  ul.column-3 {
    column-count: 2;
  }
}

form.touched .form-control:invalid {
  border: 2px solid red;
}

.form-control {
  border: 2px solid #0a6c8b;
  border-radius: 0.25rem;
  padding: 0.5rem;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  font-size: 1rem;
}

body header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(51, 51, 51, 0.4666666667);
  border-bottom: 0.0625rem solid #042b38;
  z-index: 1;
}
body header.opaque {
  background: rgba(51, 51, 51, 0.6666666667);
}
body header .logo {
  padding: 1rem 0;
  height: 4rem;
}

@media only screen and (min-width: 1321px) {
  body header {
    padding: 1rem;
    height: 6rem;
  }
  body header a {
    color: #fff;
  }
}
@media only screen and (max-width: 1320px) {
  body header {
    padding: 0.25rem 1rem;
    height: 4rem;
  }
  body header a, body header a:hover, body header a:focus, body header a:active, body header .icon {
    color: #fff;
    white-space: nowrap;
  }
}
@media only screen and (min-width: 1321px) {
  body header nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  body header nav .nav-item {
    position: relative;
    padding: 1rem 0;
  }
  body header nav .nav-item .nav-item {
    padding: 0;
  }
  body header nav .nav-item .nav-item .nav-link a::before {
    bottom: -0.5rem;
  }
  body header nav .nav-item .nav-link a {
    font-size: 1.25rem;
    white-space: nowrap;
  }
  body header nav .nav-item .nav-link a::before {
    content: "";
    position: absolute;
    background: #39c4f1;
    left: -0.5rem;
    right: -0.5rem;
    bottom: 0.5rem;
    height: 0.25rem;
    transform: scalex(0);
    transition: 0.2s transform;
    pointer-events: none;
  }
  body header nav .nav-item:hover > .nav-link a::before {
    transform: scalex(1);
  }
  body header nav .nav-item:hover > .sub-navigation {
    visibility: visible;
    opacity: 1;
  }
  body header nav .sub-navigation {
    position: absolute;
    top: 100%;
    left: -0.5rem;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: rgba(0, 45, 66, 0.85);
    /* transition */
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s, opacity 0.2s;
  }
  body header nav .sub-navigation .sub-navigation {
    border-left: 0.25rem solid #fff;
    top: 0;
    left: 100%;
    z-index: 1;
  }
}
@media only screen and (max-width: 1320px) {
  body header nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 4.5rem;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    gap: 1rem;
    padding: 1rem;
    font-size: 1.5rem;
    background-color: rgba(0, 45, 66, 0.85);
    visibility: hidden;
    opacity: 0;
    bottom: 100%;
    transition: 0.2s visibility, 0.2s opacity, 0.2s bottom;
  }
  body header nav.open {
    visibility: visible;
    opacity: 1;
    bottom: 0;
  }
  body header nav .nav-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  body header nav .nav-item .nav-link {
    display: flex;
    justify-content: space-between;
  }
  body header nav .sub-navigation {
    display: none;
    margin-left: 1rem;
    padding-left: 1rem;
    display: none;
    flex-direction: column;
    justify-content: stretch;
    gap: 1rem;
    border-left: 0.25rem solid #fff;
  }
  body header nav .sub-navigation.open {
    display: flex;
  }
}

body footer .office-hours {
  color: #fff;
  background: #39c4f1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 4rem;
}
body footer .office-hours .office-hours-day {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
body footer .office-hours .office-hours-day > div:not(:last-of-type) {
  border-right: 0.125rem solid #fff;
  padding-right: 1rem;
}
@media only screen and (max-width: 1320px) {
  body footer .office-hours {
    align-items: stretch;
    padding: 2rem 1rem;
  }
  body footer .office-hours .office-hours-day {
    flex-direction: column;
  }
  body footer .office-hours .office-hours-day br {
    display: none;
  }
  body footer .office-hours .office-hours-day > div:not(:last-of-type) {
    border-right: none;
    padding-right: 0;
    border-bottom: 0.125rem solid #fff;
    padding-bottom: 1rem;
  }
}

.map-container {
  position: relative;
  width: 100%;
  height: 25rem;
}
.map-container .map {
  border: 0;
  width: 100%;
  height: 100%;
}
.map-container .map-overlay {
  position: absolute;
  background: #fff;
  top: 0;
  bottom: 0;
  left: 25rem;
  width: 20rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media only screen and (max-width: 1320px) {
  .map-container .map-overlay {
    left: 0;
    right: 0;
    width: auto;
    background: rgba(255, 255, 255, 0.85);
  }
}
body > .hero-container {
  position: relative;
}
body > .hero-container video {
  object-fit: cover;
  width: 100%;
}
body > .hero-container .hero-content {
  position: absolute;
  top: 8rem;
  bottom: 0;
  width: 100%;
  background: rgba(0, 45, 66, 0.65);
}
body > .hero-container .hero-content .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

@media only screen and (max-width: 1320px) {
  body > .hero-container video {
    min-height: 30rem;
  }
  body > .hero-container .hero-content {
    top: 4.5rem;
    min-height: 25.5rem;
  }
}
@media only screen and (max-width: 720px) {
  body > .hero-container .hero-content .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  body > .hero-container .hero-content .hero-buttons a {
    text-align: center;
  }
}
.block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #333;
  align-items: start;
  padding: 2rem;
}
.block.block-horizontal {
  flex-direction: row;
}
.block.block-align-center {
  align-items: center;
}
.block.block-limit-width {
  max-width: 75rem;
  margin: 0 auto;
}
.block a {
  color: #39c4f1;
}
.block a:hover {
  color: #333;
}
.block .block-content-title {
  font-size: 2rem;
  color: #39c4f1;
  border-bottom: 1px solid #39c4f1;
}
.block .block-content-title-detail {
  font-size: 1.25rem;
  padding-left: 1rem;
}
.block .block-content-data {
  padding-top: 1rem;
}
.block .block-content-link {
  display: block;
  padding-top: 0.5rem;
  font-weight: bold;
}

.block-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-items: center;
}
.block-grid * {
  flex: 0 0 calc(50% - 0.5rem);
}
.block-grid img {
  object-fit: fill;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 720px) {
  .block-grid * {
    flex: 0 0 100%;
  }
}

.block-split {
  flex-direction: row;
}
.block-split .block-content {
  flex-grow: 1;
}
.block-split .block-image {
  width: 40%;
}
@media only screen and (max-width: 720px) {
  .block-split {
    padding: 2rem 1rem;
  }
  .block-split.block-split {
    flex-direction: column;
  }
  .block-split.block-split .block-content, .block-split.block-split .block-image {
    flex: 1 0 auto;
    width: 100%;
  }
}

.block-alternative {
  color: #fff;
  background: #39c4f1;
}

.block-padding {
  padding: 2rem;
}

.blog {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 3rem;
  border-bottom: 1px solid #042b38;
  padding-bottom: 1rem;
}
.blog > img {
  width: 20%;
  flex: 0 0 20%;
}
@media only screen and (max-width: 720px) {
  .blog {
    flex-direction: column;
  }
  .blog > img {
    width: 100%;
    flex: 0 0 100%;
  }
}
