*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

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

a {
  cursor: pointer;
}

button {
  border: none;
}

.blue-background {
  background-color: #273C53;
}

.red-background {
  background-color: #90392B;
}

.yellow-background {
  background-color: #FDB734;
}

@media (min-width: 901px) {
  .show-mobile-only {
    display: none;
  }
}

@media (max-width: 900px) {
  .hide-for-mobile {
    display: none;
  }
}

body {
  font-family: "Roboto", sans-serif !important;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
}

h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: #273C53;
}
@media (max-width: 599px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: #3C5775;
}
@media (max-width: 599px) {
  h2 {
    font-size: 1rem;
  }
}

.heading-with-line, .heading-with-line--2 {
  overflow: hidden;
  text-align: center;
}
.heading-with-line span, .heading-with-line--2 span {
  position: relative;
  display: inline-block;
}
.heading-with-line span::before, .heading-with-line--2 span::before, .heading-with-line span::after, .heading-with-line--2 span::after {
  position: absolute;
  top: 50%;
  width: 100vw;
  content: "";
  border-bottom: 2px solid #FDB734;
  margin: 0 20px;
}
.heading-with-line span::before, .heading-with-line--2 span::before {
  right: 100%;
}
.heading-with-line span::after, .heading-with-line--2 span::after {
  left: 100%;
}
@media (max-width: 599px) {
  .heading-with-line--2 span::before {
    display: none;
  }
  .heading-with-line--2 span::after {
    display: none;
  }
}

.large-font {
  font-size: 20px;
}

.larger-font {
  font-size: 24px;
}

.white-text {
  color: #FFFFFF;
}

.blue-text {
  color: #3C5775;
}

.dark-blue-text {
  color: #273C53;
}

.red-text {
  color: #90392B;
}

.drop-shadow {
  text-shadow: 3px 1px 3px rgba(0, 0, 0, 0.6);
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.bold {
  font-weight: 600;
}

.black {
  font-weight: 900;
}

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

.line-clamp, .line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-2 {
  -webkit-line-clamp: 2;
}

.max-500 {
  max-width: 500px;
}

.max-800 {
  max-width: 800px;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.fdc {
  flex-direction: column;
}

.aic {
  align-items: center;
}

.jcc {
  justify-content: center;
}

.jcsb {
  justify-content: space-between;
}

.gap-15 {
  gap: 15px;
}

.gap-30 {
  gap: 30px;
}

.gap-50 {
  gap: 50px;
}

.gap-100 {
  gap: 100px;
}

.flex-1 {
  flex: 1;
}

@media (max-width: 599px) {
  .hide-for-mobile {
    display: none !important;
  }
}

.spacer {
  display: block;
  height: 10px;
}

.top-15 {
  margin-top: 15px;
}

.bottom-15 {
  margin-bottom: 15px;
}

.top-30 {
  margin-top: 30px;
}

.bottom-30 {
  margin-bottom: 30px;
}

.top-50 {
  margin-top: 50px;
}

.bottom-50 {
  margin-bottom: 50px;
}

.top-100 {
  margin-top: 100px;
}

.bottom-100 {
  margin-bottom: 100px;
}

.margin-auto {
  margin-left: auto;
  margin-right: auto;
}

.index-1 {
  position: relative;
  z-index: 1;
}

.index-100 {
  position: relative;
  z-index: 100;
}

.container, .container--narrow, .container--small {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: content-box;
}
.container--small {
  max-width: 1000px;
}
.container--narrow {
  max-width: 700px;
}

.overflow-container {
  overflow: hidden;
}

.button, .button--small {
  color: #273C53;
  border: 2px solid #FDB734;
  border-radius: 15px;
  text-decoration: none;
  width: max-content;
  padding: 10px 15px;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button:hover, .button--small:hover {
  cursor: pointer;
  background-color: #FDB734;
  text-decoration: none !important;
  color: inherit !important;
}
.button--small {
  font-size: 16px;
  padding: 5px 10px;
}
.button--active {
  background-color: #FDB734;
}

.fade-in {
  opacity: 0;
}
.fade-in--active {
  animation: fade-in 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-right {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-right {
  opacity: 0;
  transform: translateX(100px);
}
.fade-right--active {
  animation: fade-right 1s ease-out 0s 1 normal forwards;
}

.fade-left {
  opacity: 0;
  transform: translateX(-100px);
}
.fade-left--active {
  animation: fade-left 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-left {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(100px);
}
.fade-up--active {
  animation: fade-up 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-down {
  opacity: 0;
  transform: translateY(-100px);
}
.fade-down--active {
  animation: fade-down 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-down {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.zoom-in-container {
  overflow: hidden;
  max-width: 100%;
  position: relative;
}

.zoom-in {
  transform: scale(1);
  z-index: -1;
}
.zoom-in--active {
  animation: zoom-in 2s ease-out 0s 1 normal forwards;
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
    z-index: -1;
  }
  100% {
    transform: scale(1.075);
    z-index: -1;
  }
}
.zoom-out-container {
  overflow: hidden;
  max-width: 100%;
}

.zoom-out {
  transform: scale(1.075);
  z-index: -1;
}
.zoom-out--active {
  animation: zoom-in 2s ease-out 0s 1 normal forwards;
}

@keyframes zoom-out {
  0% {
    transform: scale(1.075);
    z-index: -1;
  }
  100% {
    transform: scale(1);
    z-index: -1;
  }
}
.line-fade {
  width: 0px;
}
.line-fade--active {
  animation: line-fade 1s ease-out 1 normal forwards;
}

@keyframes line-fade {
  0% {
    width: 0px;
  }
  100% {
    width: 50px;
  }
}
.rotate-image {
  transform: rotate(180deg);
}
.rotate-image--active {
  animation: rotate 1s ease-out normal forwards;
}

@keyframes rotate {
  0% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.border, .border-bottom, .border-right, .border-left {
  position: absolute;
  z-index: 100;
}
.border-left {
  height: 0px;
  width: 15px;
  left: 0;
  top: 0;
}
.border-left--active {
  animation: border-up 1.5s ease-in-out normal forwards;
}
.border-right {
  height: 0px;
  width: 15px;
  right: 0;
  bottom: 0;
}
.border-right--active {
  animation: border-up 1.5s ease-in-out normal forwards;
}
.border-bottom {
  height: 15px;
  width: 0px;
  bottom: 0;
  left: 0;
}
.border-bottom--active {
  animation: border-left 1.5s ease-in-out normal forwards;
}

@keyframes border-up {
  0% {
    height: 0px;
  }
  100% {
    height: 100%;
  }
}
@keyframes border-left {
  0% {
    width: 0px;
  }
  100% {
    width: 100%;
  }
}
.delay {
  animation-delay: 0.25s;
}

.delay-long {
  animation-delay: 0.5s;
}

.delay-longer {
  animation-delay: 0.75s;
}

.accordion {
  cursor: pointer;
  padding: 24px;
  width: 100%;
  border-top: 1px solid #273C53;
  outline: none;
  transition: all 0.2s;
  position: relative;
  background: transparent;
}
.accordion h2 {
  font-size: 20px;
  text-align: left;
}
.accordion:last-of-type {
  border-bottom: 1px solid #273C53;
}
.accordion::after {
  content: url("../assets/arrow-down.svg");
  width: 24px;
  height: 24px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.accordion--active::after {
  transform: translateY(-50%) rotate(180deg);
}
.accordion--active:last-of-type {
  border-bottom: none;
}

.panel {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.navigation {
  background-image: url(../assets/blue-wave.svg);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 80px;
}
.navigation h1 {
  font-size: 40px;
  padding-top: 15px;
}
@media (max-width: 900px) {
  .navigation {
    background: #E9F0F8;
    background-image: none;
    padding-bottom: 50px;
  }
}

@media (max-width: 1100px) {
  .nav-container, .nav-container--footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.nav-top .navigation-link {
  color: inherit;
}

.navigation-link {
  font-weight: 400;
  text-decoration: none;
}
.navigation-link:hover, .navigation-link--active {
  color: #90392B !important;
  font-weight: 600;
  text-decoration: underline;
}

.nav-container--footer h1 {
  font-size: 40px;
}
.nav-container--footer .navigation-link:hover, .nav-container--footer .navigation-link--active {
  color: #FDB734 !important;
}

@media (max-width: 900px) {
  .navigation-links {
    justify-content: center;
  }
}

.footer-row-1 {
  border-bottom: 2px solid #FDB734;
  padding-top: 50px;
  padding-bottom: 30px;
}

.footer-row-2 {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 900px) {
  .footer-row-2 {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .footer-row-2 p {
    text-align: center;
  }
}

.footer-row-3 {
  border-top: 2px solid #FDB734;
  padding-top: 30px;
  padding-bottom: 50px;
}

.footer-contact a {
  text-decoration: none;
}

@media (max-width: 900px) {
  .social-media {
    justify-content: center;
  }
}

.alert-bar-container {
  padding-bottom: 50px;
}

.alert-bar {
  border-radius: 15px;
  padding: 25px;
  text-decoration: none;
}

@media (max-width: 900px) {
  .homepage-introduction {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }
  .homepage-introduction .max-500, .homepage-introduction h1 {
    max-width: none;
  }
  .homepage-video-accent {
    display: none;
  }
}
.homepage-video {
  width: 100%;
  position: relative;
}
.homepage-video iframe {
  border-radius: 15px;
  aspect-ratio: 16/9;
  border: none;
}

.homepage-video-accent {
  position: absolute;
  top: -100px;
  left: -100px;
  z-index: -1;
}

.homepage-image {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.quick-links-container {
  position: relative;
}

.quick-links-icon, .quick-links-star {
  position: absolute;
  right: 100px;
  top: -100px;
  z-index: 10;
}

.quick-links-star {
  left: 0px;
  top: -25px;
}

@media (max-width: 900px) {
  .quick-links-icon, .quick-links-star {
    display: none;
  }
}
.quick-links {
  position: relative;
}
@media (max-width: 900px) {
  .quick-links {
    flex-direction: column;
  }
}

.news-icon {
  position: absolute;
  top: -65px;
  right: -75px;
  z-index: 0;
  transform: rotate(90deg);
}
@media (max-width: 900px) {
  .news-icon {
    display: none;
  }
}

.quick-link, .quick-link--white {
  text-decoration: none;
  color: inherit;
  background-color: #E9F0F8;
  border-radius: 15px;
}
@media (max-width: 900px) {
  .quick-link, .quick-link--white {
    width: 100%;
  }
}
.quick-link--white {
  background-color: #FFFFFF;
}

.quick-link-image, .quick-link-image img {
  border-radius: 15px 15px 0px 0px;
  max-height: 300px;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.quick-link-image {
  position: relative;
}
.quick-link-image .image-overlay {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(60, 87, 117, 0.7);
  top: 0;
  padding: 30px;
  border-radius: 15px 15px 0px 0px;
}

.quick-link:hover .image-overlay, .quick-link--white:hover .image-overlay {
  display: flex;
}

.quick-link-text, .quick-link-text--white {
  background-color: #E9F0F8;
  padding: 25px 15px;
  border-radius: 0px 0px 15px 15px;
}
.quick-link-text--white {
  background-color: #FFFFFF;
}

.text-with-arrow, .text-with-arrow--blue {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.text-with-arrow::after, .text-with-arrow--blue::after {
  content: url("../assets/arrow.svg");
  transform: translateY(3px);
}
.text-with-arrow--blue::after {
  content: url("../assets/blue-arrow.svg");
}

.news-container {
  background-image: url(../assets/grey-wave.svg);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 200px;
  padding-bottom: 80px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .news-container {
    background: #F2EFEC;
    background-image: none;
    padding-top: 100px;
  }
}

.hero-image {
  position: relative;
  padding-top: 200px;
  padding-bottom: 200px;
}
.hero-image .image-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -50px;
  background: rgba(134, 164, 194, 0.5);
  z-index: -1;
}
.hero-image img {
  position: absolute;
  top: -50px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  background-color: #86A4C2;
}
.hero-image h1 {
  z-index: 1;
}

.about-buttons .button, .about-buttons .button--small {
  flex: 1;
}

.about-cards {
  position: relative;
}
@media (max-width: 599px) {
  .about-cards {
    flex-direction: column;
  }
}

.cards-icon {
  position: absolute;
  top: -100px;
  left: -100px;
  z-index: 0;
}
@media (max-width: 900px) {
  .cards-icon {
    display: none;
  }
}

.content-card {
  border: 1px solid #FDB734;
  border-radius: 15px;
  padding: 15px;
}
.content-card img {
  max-height: 85px;
}

@media (max-width: 599px) {
  .text-with-image {
    flex-direction: column-reverse;
  }
}

.image-with-icons {
  position: relative;
}
.image-with-icons img {
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.image-with-icons .blue-star {
  position: absolute;
  right: 100px;
  bottom: -50px;
}
.image-with-icons .yellow-icon {
  position: absolute;
  right: -100px;
  top: -100px;
}
@media (max-width: 900px) {
  .image-with-icons .yellow-icon, .image-with-icons .blue-star {
    display: none;
  }
}

.contact-container {
  position: relative;
}

.yellow-contact-icon {
  position: absolute;
  left: 33%;
  top: -110px;
}

@media (max-width: 599px) {
  .yellow-contact-icon {
    display: none;
  }
  .contact-container {
    margin-top: 50px;
  }
}
@media (max-width: 900px) {
  .locations-flex {
    gap: 50px;
  }
}
@media (max-width: 599px) {
  .locations-flex {
    gap: 10px;
  }
  .locations-flex div {
    width: 100%;
  }
  .locations-flex p {
    text-align: center;
  }
}

.form-container {
  position: relative;
}

.contact-form input, .contact-form textarea {
  border-radius: 10px;
  border: 1px solid #3C5775;
}
.contact-form label {
  color: #273C53;
}

.news-page-container {
  position: relative;
}

.blue-news-icon {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg) !important;
}
@media (max-width: 599px) {
  .blue-news-icon {
    display: none;
  }
}

.news-post {
  flex: 31%;
}

#blog-posts {
  padding-bottom: 50px;
  border-bottom: 1px solid #273C53;
}

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