/*
 sm     =   small   =   phone-small     = 576px     = 36em;
 md     =   medium  =   phone-large     = 768px     = 48em;
 lg     =   large   =   phone-tablet    = 992px     = 62em;
 xl     =   xlarge  =   desktop         = 1200px    = 75em;
 xxl    =   xxl     =   big desktop     = 1400px    = 87.5em;

 1em = 16px;
*/
/*
When using MAX and Desktop first approach the biggest screen size
shall be on top for right cascading of styles(smallest shall be last)
*/
/*
When using MIN and Mobile first approach the smalles screen size
shall be on top for right cascading of styles(bigest shall be last)
*/
.bg-primary {
  background-color: #004366 !important;
  color: white;
}

hr:not([size]) {
  opacity: 1;
  height: 2px;
  border-radius: 2px;
}

* {
  margin: 0;
  padding: 0;
}

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

*:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-padding-top, 100px);
}

img {
  max-width: 100%;
}

*:focus {
  outline: none;
  box-shadow: none !important;
}

*:focus-visible {
  outline: 2px solid #4D7B94;
  box-shadow: 0 0 0 2px solid #4D7B94 !important;
}

hr {
  width: 100%;
  height: 1px;
  background-color: #CCE4F0;
  border: none;
}

@font-face {
  font-family: "Sofia";
  src: url(../fonts/sofia/SofiaSans-Regular.woff);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Sofia";
  src: url(../fonts/sofia/SofiaSans-SemiLight.woff);
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Sofia";
  src: url(../fonts/sofia/SofiaSans-Medium.woff);
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Sofia";
  src: url(../fonts/sofia/SofiaSans-MediumItalic.woff);
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Sofia";
  src: url(../fonts/sofia/SofiaSans-SemiBold.woff);
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Sofia";
  src: url(../fonts/sofia/SofiaSans-Bold.woff);
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Sofia";
  src: url(../fonts/sofia/SofiaSans-ExtraBold.woff);
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Sofia";
  src: url(../fonts/sofia/SofiaSans-Black.woff);
  font-weight: 900;
  font-style: normal;
}
body {
  font-family: "Sofia", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: normal;
  text-rendering: geometricPrecision;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Sofia", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

h1,
h2,
h3 {
  font-weight: 700;
}

a {
  text-decoration: none;
}

a:not([class]) {
  color: #004366;
}
a:not([class]):hover, a:not([class]):focus {
  color: #FC5830;
}
a:not([class]):visited {
  color: #C92A03;
}

.section-title {
  margin-bottom: 2rem;
  color: #004366;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}

.page-title {
  margin-bottom: 0.125rem;
  color: inherit;
  font-size: 2.5rem;
  line-height: 1.1;
}

.page-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
}

.form-title {
  text-transform: uppercase;
  font-size: 0.9rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.33;
}

@media screen and (max-width: 47.9em) {
  .page-title {
    font-size: 2.5rem;
    line-height: 1.3;
  }
}
button,
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  border: 1px solid white;
  border-radius: 8px;
  background-color: #C92A03;
  box-shadow: none;
}
button:hover, button:focus,
.btn:hover,
.btn:focus {
  background-color: #871D03;
  border: 1px solid white;
  color: white;
}

.btn-primary {
  background-color: #004366;
}
.btn-primary:hover, .btn-primary:focus {
  color: white;
  background-color: #0077B6;
}
.btn-secondary {
  background-color: #0077B6;
}
.btn-secondary:hover, .btn-secondary:focus {
  color: white;
  background-color: #CCE4F0;
}

.page-content {
  color: #004366;
  font-weight: 500;
  line-height: 1.55;
}
.page-content h1:not([class]) {
  font-size: 1.5rem;
}
.page-content h2:not([class]) {
  font-size: 1.2rem;
}
.page-content h3:not([class]) {
  font-size: 1rem;
}
.page-content h4:not([class]) {
  font-size: 1.2rem;
}
.page-content h5:not([class]) {
  font-size: 1rem;
}
.page-content a:not([class]) {
  color: #C92A03;
}
.page-content a:not([class]):hover, .page-content a:not([class]):focus {
  text-decoration: underline;
}

.section {
  margin-bottom: 5rem;
}

input,
textarea,
select,
.form-control {
  display: inline-flex;
  align-items: stretch;
  padding: calc(0.75rem) 0.5rem;
  border-radius: 8px;
  border: 1px solid #0077B6;
  color: #004366;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 0.9;
  background-color: white;
}
input, input:placeholder,
textarea,
textarea:placeholder,
select,
select:placeholder,
.form-control,
.form-control:placeholder {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.55;
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder, .form-control::-moz-placeholder {
  color: #66747C;
  opacity: 0.6;
}
input::placeholder,
textarea::placeholder,
select::placeholder,
.form-control::placeholder {
  color: #66747C;
  opacity: 0.6;
}
input p.isInvalid,
textarea p.isInvalid,
select p.isInvalid,
.form-control p.isInvalid {
  display: none;
}
input input.isInvalid,
input select.isInvalid,
textarea input.isInvalid,
textarea select.isInvalid,
select input.isInvalid,
select select.isInvalid,
.form-control input.isInvalid,
.form-control select.isInvalid {
  border-color: #C92A03;
}
input:invalid + p.isInvalid,
textarea:invalid + p.isInvalid,
select:invalid + p.isInvalid,
.form-control:invalid + p.isInvalid {
  display: block;
}

textarea {
  display: block;
  width: 100%;
  min-height: 10rem;
  line-height: 1.3;
  background-color: white;
}
textarea:placeholder {
  font-size: 0.875rem;
}

input[type=radio],
input[type=checkbox] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  padding: 0rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #0077B6;
}
input[type=radio] + label,
input[type=checkbox] + label {
  display: inline-block;
  margin-left: 0.5rem;
  width: calc(100% - 2.5rem);
  cursor: pointer;
}
input[type=radio]:before,
input[type=checkbox]:before {
  content: "";
  display: inline-flex;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  transform: scale(0);
  background-color: #0077B6;
}

div[class*=col]:has(input[type=radio]),
div[class*=col]:has(input[type=checkbox]) {
  display: flex;
  align-items: top;
}
div[class*=col]:has(input[type=radio]) input,
div[class*=col]:has(input[type=checkbox]) input {
  margin-top: 0.25rem;
}

input[type=checkbox] {
  border-radius: 2px;
}
input[type=checkbox]:before {
  border-radius: 0;
}
input[type=checkbox]:checked::before {
  transform: scale(1);
  background-image: url(../images/svg/chekcbox-checked.svg);
  background-color: #0077B6;
  background-repeat: no-repeat;
  background-position: center;
}

input[type=checkbox].isInvalid + label {
  color: #C92A03;
}

input[type=radio] {
  border-radius: 50%;
}
input[type=radio]:before {
  border-radius: 50%;
}
input[type=radio]:checked::before {
  transform: scale(1);
}

input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
}

label,
legend {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #004366;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
label[data-required=true]:after,
legend[data-required=true]:after {
  content: "*";
  color: #C92A03;
}

label:has(~ input[required]):after,
label:has(~ textarea[required]):after,
label:has(~ select[required]):after {
  content: "*";
  color: #C92A03;
}

form .section-title,
.form .section-title {
  margin-top: 1rem;
  margin-bottom: 0;
  color: #004366;
  text-transform: none;
}

fieldset {
  margin-bottom: 0.5rem;
}

table:not([class]) td,
table:not([class]) th,
thead:not([class]) td,
thead:not([class]) th {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border: 1px solid #0077B6;
}
table:not([class]) td:first-child:not(:last-child),
table:not([class]) th:first-child:not(:last-child),
thead:not([class]) td:first-child:not(:last-child),
thead:not([class]) th:first-child:not(:last-child) {
  padding-left: 0.5rem;
}
table:not([class]) td:last-child:not(:first-child),
table:not([class]) th:last-child:not(:first-child),
thead:not([class]) td:last-child:not(:first-child),
thead:not([class]) th:last-child:not(:first-child) {
  padding-right: 0.5rem;
}
table:not([class]) th,
thead:not([class]) th {
  background-color: #CCE4F0;
  font-size: 1rem;
  font-weight: 700;
}
table:not([class]) td,
thead:not([class]) td {
  background-color: transparent;
}

.brand {
  width: 100%;
  height: 70px;
  background-image: url(../images/svg/brand-logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.pagination {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.pagination__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.pagination__list li {
  display: inline-block;
}
.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 5px;
  color: #1A2F3A;
  font-weight: 600;
  border: 1px solid transparent;
  background-position: center;
  background-repeat: no-repeat;
}
.pagination__link:hover, .pagination__link:focus {
  color: #0077B6;
  background-color: rgba(0, 119, 182, 0.2);
}
.pagination__link.active {
  color: #004366;
  font-weight: 700;
  background-color: #CCE4F0;
  border-color: #0077B6;
}
.pagination__link.disabled {
  color: #99A3A7;
}
.pagination__link--first {
  background-image: url(../images/svg/pagination-first.svg);
}
.pagination__link--first:hover, .pagination__link--first:focus {
  background-image: url(../images/svg/pagination-first-hover.svg);
}
.pagination__link--first.disabled {
  background-image: url(../images/svg/pagination-first-disabled.svg);
}
.pagination__link--prev {
  background-image: url(../images/svg/pagination-prev.svg);
}
.pagination__link--prev:hover, .pagination__link--prev:focus {
  background-image: url(../images/svg/pagination-prev-hover.svg);
}
.pagination__link--prev.disabled {
  background-image: url(../images/svg/pagination-prev-disabled.svg);
}
.pagination__link--next {
  background-image: url(../images/svg/pagination-next.svg);
}
.pagination__link--next:hover, .pagination__link--next:focus {
  background-image: url(../images/svg/pagination-next-hover.svg);
}
.pagination__link--next.disabled {
  background-image: url(../images/svg/pagination-next-disabled.svg);
}
.pagination__link--last {
  background-image: url(../images/svg/pagination-last.svg);
}
.pagination__link--last:hover, .pagination__link--last:focus {
  background-image: url(../images/svg/pagination-last-hover.svg);
}
.pagination__link--last.disabled {
  background-image: url(../images/svg/pagination-last-disabled.svg);
}

@media screen and (max-width: 47.9em) {
  .pagination__list {
    flex-wrap: wrap;
  }
}
.social-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.social-link {
  display: block;
  width: 2rem;
  height: 2rem;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.social-link--facebook {
  background-image: url(../images/svg/social-fb.svg);
}
.social-link--insta {
  background-image: url(../images/svg/social-insta.svg);
}
.social-link--lin {
  background-image: url(../images/svg/social-lin.svg);
}
.social-link--x {
  background-image: url(../images/svg/social-x.svg);
}
.social-link--yt {
  background-image: url(../images/svg/social-yt.svg);
}
.social-link--tt {
  background-image: url(../images/svg/social-tt.svg);
}
.social-link--link {
  background-image: url(../images/svg/social-link.svg);
}
.social-link--rss {
  background-image: url(../images/svg/social-rss.svg);
}

.news-card {
  display: block;
  margin-bottom: 1rem;
}
.news-card > *:not(:last-child) {
  margin-bottom: 0.5rem;
}
.news-card__thumb {
  width: 100%;
}
.news-card__thumb img {
  width: 100%;
  aspect-ratio: 238/200;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.news-card__data {
  margin-left: 0;
  margin-right: 0;
  padding: 1rem;
}
.news-card__data > *:not(:last-child) {
  margin-bottom: 0.5rem;
}
.news-card__title {
  color: #004366;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
.news-card__meta {
  align-self: center;
  font-family: "Montseratt", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}
.news-card__meta > *:not(:last-child) {
  margin-right: 0.5rem;
}
.news-card *[class*=col] {
  padding-left: 0;
  padding-right: 0;
}
.news-card .page-tag {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-size: 1rem;
  font-weight: 500;
}
.news-card .btn {
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1rem !important;
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

@media screen and (max-width: 47.9em) {
  .news-card__thumb img {
    width: 100%;
    aspect-ratio: 238/130;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
  }
}
@media screen and (min-width: 48em) {
  .horizontal-news-cards .news-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .horizontal-news-cards .news-card__thumb {
    width: 50%;
    flex: 0 0 50%;
  }
  .horizontal-news-cards .news-card .btn btn-primary {
    margin-left: auto;
  }
  .news-card .btn btn-primary {
    margin-left: auto;
  }
}
.event-card {
  margin-bottom: 2rem;
}
.event-card__titlegroup {
  display: block;
  padding: 0.5rem 1rem;
  color: #004366;
  background-color: #F2F6F7;
  border-radius: 8px;
}
.event-card__title {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
}
.event-card__title + p {
  margin-bottom: 0;
}
.event-card .news-card__data {
  padding-left: 1rem;
  padding-right: 1rem;
}

.event-data {
  margin-bottom: 1rem;
}
.event-data__title {
  margin-bottom: 0;
  color: #1A2F3A;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.33;
}
.event-data__meta {
  margin-bottom: 0;
  color: #004366;
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.5;
}
.event-data__meta span {
  display: block;
  font-size: 1rem;
  font-weight: 500;
}

@media screen and (min-width: 62em) {
  .event-data {
    margin-bottom: 4rem;
  }
}
.more-link {
  display: flex;
  align-items: center;
  margin-left: 0.25rem;
  color: #004366;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: none;
}
.more-link:after {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-left: 0.5rem;
  background-image: url(../images/svg/arrow-right-black.svg);
  background-repeat: no-repeat;
  background-position: center;
  transition: margin-left 0.3s ease;
}
.more-link:hover, .more-link:focus {
  color: inherit;
}
.more-link:hover:after, .more-link:focus:after {
  margin-left: 0.5rem;
}

div[class*=col]:has(> a.more-link) {
  display: flex;
  justify-content: flex-end;
}

.banner-link {
  position: relative;
  display: block;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  max-height: 150px;
  padding: 1rem;
  background-color: #F2F6F7;
  filter: grayscale(1);
}
.banner-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.banner-link:hover, .banner-link:focus {
  filter: grayscale(0);
}

.outer-links {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #CCE4F0;
}

.footer-card {
  display: grid;
  grid-template-columns: 40% 60%;
  border: 2px solid #CCE4F0;
  border-radius: 10px;
}
.footer-card__image {
  display: flex;
  justify-content: flex-end;
}
.footer-card__image img {
  display: block;
  padding: 1rem;
}
.footer-card__info {
  grid-column: 2/3;
  margin: 1rem 0.5rem;
  background-repeat: no-repeat;
  background-position: center right calc(60% + 20px + 25px);
}
.footer-card__info a {
  color: inherit;
  display: block;
}
.footer-card__phone {
  margin-bottom: 0.125rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
}
.footer-card__mail {
  font-size: 0.87rem;
}
.footer-card__title {
  grid-column: 1/3;
  margin-bottom: 0;
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.11;
  text-align: center;
  background-color: #0077B6;
  border-radius: 0 0 10px 10px;
}

.top-search__btn {
  display: block;
  padding: 0.25rem 0.5rem;
  padding-right: calc(18px + 1rem);
  background-image: url(../images/svg/search-icon.svg);
  background-repeat: no-repeat;
  background-position: center right 0.5rem;
  background-color: #0077B6;
  background-size: 18px;
  border: transparent;
  border-width: 0px;
  border-radius: 4px;
  color: white;
  font-size: 0.87rem;
}
.top-search__btn:hover, .top-search__btn:focus {
  background-image: url(../images/svg/search-icon-dark.svg);
  background-color: #CCE4F0;
  color: #004366;
  border: none;
}
.top-search__btn[aria-expanded=false] + .top-search__modal {
  display: none;
}
.top-search__btn[aria-expanded=true] + .top-search__modal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 24, 36, 0.85);
  z-index: 9999;
}
.top-search__close {
  display: flex;
  margin-top: 2.8rem;
  margin-left: auto;
  width: 2rem;
  height: 2rem;
  background-image: url(../images/svg/close-secondary.svg);
  background-position: center;
  background-color: transparent;
  border-color: transparent;
  border-radius: 50%;
}
.top-search__close:hover, .top-search__close:focus {
  background-image: url(../images/svg/close-dark.svg);
  background-color: transparent;
  border-color: transparent;
}
.top-search__form {
  width: 45vw;
  margin: auto;
  padding-top: 33vh;
}
.top-search__input {
  width: 100%;
  background-color: white;
  border: 1px solid #0077B6;
}
.top-search__label {
  color: white;
  font-size: 0.87rem;
  text-transform: uppercase;
}
.top-search__submit {
  height: 100%;
  color: white;
  background-color: #0077B6;
  outline: 1px solid white;
  border-width: 0px;
}
.top-search__submit:hover, .top-search__submit:focus {
  color: #004366;
  background-color: #CCE4F0;
}

@media screen and (max-width: 61.9em) {
  .top-search__form {
    width: 100%;
  }
}
.page-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  margin-bottom: 0;
  padding: 0.125rem 0.5rem;
  color: #0077B6;
  font-size: 1.125rem;
  font-weight: 700;
  border: 2px solid #0077B6;
  border-radius: 0.5rem;
}
.page-tag:after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-size: contain;
}
.page-tag--gallery:after {
  background-image: url(../images/svg/tag-gallery.svg);
}
.page-tag--audio:after {
  background-image: url(../images/svg/tag-audio.svg);
}
.page-tag--video:after {
  background-image: url(../images/svg/tag-video.svg);
}
.page-tag--event:after {
  background-image: url(../images/svg/tag-event.svg);
}

.link-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: block;
}
.link-list li {
  display: inline-block;
}
.link-list a {
  display: block;
  min-width: 32px;
  margin-bottom: 0.25rem;
  padding: 0.25rem 0.5rem;
  color: #0077B6;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid gainsboro;
  border-radius: 4px;
}
.link-list a:hover, .link-list a:focus {
  color: inherit;
  background-color: rgba(0, 119, 182, 0.1);
}

.sidebar-nav {
  margin-bottom: 2rem;
  border-left: 1px solid #CCE4F0;
}
.sidebar-nav__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.sidebar-nav__item {
  position: relative;
  color: #1A2F3A;
  font-weight: 500;
  line-height: 1.5;
  padding: 0 2rem;
}
.sidebar-nav__item:after {
  position: relative;
  content: "";
  display: block;
  top: 0;
  width: calc(100% + 2rem);
  height: 1px;
  background-color: #CCE4F0;
}
.sidebar-nav__item:has(.active), .sidebar-nav__item:hover, .sidebar-nav__item:focus {
  color: #004366;
  background-color: #CCE4F0;
}
.sidebar-nav__item:has(.active):before, .sidebar-nav__item:hover:before, .sidebar-nav__item:focus:before {
  position: absolute;
  content: "";
  display: block;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #CCE4F0;
}
.sidebar-nav__link {
  display: flex;
  color: inherit;
  display: block;
  padding: 1rem 0;
}
.sidebar-nav__link:hover, .sidebar-nav__link:focus {
  color: #004366;
  font-weight: 600;
}

.files__title {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.5rem;
  color: #004366;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  font-weight: 700;
  background-color: #F2F6F7;
  border-radius: 10px;
}
.files__title span {
  display: inline-block;
  margin-left: auto;
  padding: 0.25rem 0.5rem;
  padding-left: calc(0.5rem + 24px);
  font-size: 1.125rem;
  background-image: url(../images/svg/stack-1.svg);
  background-repeat: no-repeat;
  background-position: left 0.5rem center;
  background-color: #CCE4F0;
  border-radius: 9px;
}
.files__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid #CCE4F0;
}

.files__list li {
  margin-bottom: 0.5rem;
}
.files__list li:first-child {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.files__list li:first-child .file__title {
  gap: 0.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #004366;
}
.files__list li:first-child .file__title:before {
  background-image: url(../images/svg/group-file-multiple.svg);
  background-repeat: no-repeat;
  margin-left: 0.5rem;
  padding: 0.5rem 0.5rem;
  height: calc(0.5rem + 24px);
  flex: 0 0 calc(2rem + 24px);
  background-color: #004366;
  border-radius: 8px;
}
.files__list li:first-child .file__title::after {
  display: none;
}
.files__list li:first-child .file__meta, .files__list li:first-child .file__subtitle {
  display: block;
  margin-left: calc(3rem + 24px);
}
.files__list li:only-child .file__title::before {
  background-image: url(../images/svg/group-file-single.svg);
}
.files__list li:only-child .file__title::after {
  display: block;
}

.file {
  display: block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-right: 0.5rem;
}
.file__title {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  width: 100%;
  color: #23395B;
}
.file__title:before {
  content: "";
  display: block;
  width: 14px;
  height: calc(1rem + 12px);
  flex: 0 0 calc(1rem + 12px);
  margin-left: calc(2rem + 24px);
  padding: 0.5rem 0.5rem;
  background-image: url(../images/svg/file.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.file__title:after {
  content: "";
  margin-left: auto;
  background-image: url(../images/svg/download.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  padding: 0.5rem 0.5rem;
  height: calc(0.5rem + 18px);
  flex: 0 0 calc(2rem + 12px);
  background-color: #CCE4F0;
  border-radius: 8px;
}
.file__subtitle {
  margin-top: 0.5rem;
  color: #0077B6;
}
.file__meta {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #4D5D66;
}
.file__meta, .file__subtitle {
  display: none;
}
.file:hover, .file:focus {
  background-color: #F2F6F7;
  border-radius: 10px;
}

.sitemap,
.sitemap ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sitemap ul,
.sitemap ul ul {
  list-style: none;
  padding-top: 0.5rem;
  padding-left: calc(16px + 0.5rem);
}
.sitemap ul a,
.sitemap ul ul a {
  font-size: 1.125rem;
  font-weight: 600;
}
.sitemap ul li a:before,
.sitemap ul ul li a:before {
  background-image: url(../images/svg/stack-2.svg);
}
.sitemap li,
.sitemap ul li {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.sitemap__title,
.sitemap ul__title {
  margin-bottom: 0.25rem;
}
.sitemap__title a,
.sitemap ul__title a {
  color: #004366;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}
.sitemap__link,
.sitemap ul__link {
  color: #004366;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
}
.sitemap a,
.sitemap ul a {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  line-height: 1.5;
}
.sitemap a:before,
.sitemap ul a:before {
  content: "";
  display: block;
  width: 16px;
  height: 20px;
  background-image: url(../images/svg/stack-1.svg);
  background-repeat: no-repeat;
  background-position: center top 3px;
}
.sitemap a:hover, .sitemap a:focus,
.sitemap ul a:hover,
.sitemap ul a:focus {
  color: #C92A03;
}

.sitemap {
  margin-bottom: 2rem;
}

#map {
  min-height: 300px;
  height: 100%;
}

.cookies {
  position: fixed;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  background-color: rgba(0, 67, 102, 0.9);
  z-index: 9999;
}
.cookies a {
  color: inherit;
  text-decoration: underline;
}
.cookies button {
  border: 1px solid white;
}

.post-gallery {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #F2F6F7;
}
.post-gallery__title {
  color: #004366;
  text-align: center;
  font-size: 2rem;
}
.post-gallery .banner-carousel__item {
  width: 25%;
  height: 100%;
  aspect-ratio: 4/3;
  padding: 0.5rem;
}
.post-gallery .banner-carousel__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.post-gallery .banner-carousel__prev, .post-gallery .banner-carousel__next {
  background-size: 48px;
}
.post-gallery .banner-carousel__modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  background-color: rgba(0, 24, 36, 0.85);
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
}
.post-gallery .banner-carousel__modal img {
  width: 100%;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
.post-gallery .banner-carousel__container:has(.banner-carousel__item[aria-expanded=true]) .banner-carousel__modal {
  display: flex;
  flex-direction: column;
}

.post-gallery--links .banner-carousel {
  min-height: unset;
}
.post-gallery--links .banner-carousel__item {
  flex: 0 0 auto;
  /* Adjust for 5 images per row */
  width: 16.66%;
  max-height: 150px;
  aspect-ratio: 280/150;
  box-sizing: border-box;
  padding: 0.25rem;
  border-radius: 8px;
}
.post-gallery--links .banner-carousel__item img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: white;
  border-radius: 8px;
}

#bannerCarouselClose {
  position: fixed;
  right: 40px;
  top: 0;
}

.main:has(.post-gallery) {
  padding-bottom: 0;
}

.form-widget {
  padding: 1rem;
  background-color: rgba(242, 246, 247, 0.9);
  border-radius: 8px;
  color: #004366;
}
.form-widget__result + .form-widget__result {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #CCE4F0;
}
.form-widget__title {
  font-size: 1.125rem;
  text-transform: uppercase;
  line-height: 1.3;
}
.form-widget__question {
  font-size: 1rem;
}
.form-widget__voted {
  display: flex;
  justify-content: space-between;
  padding-left: 0.5rem;
}
.form-widget__voted span:first-child {
  font-size: 0.85rem;
  font-weight: 700;
}
.form-widget label {
  display: block;
  margin-bottom: 0.125rem;
}
.form-widget input:not([type=radio], [type=checkbox]),
.form-widget select,
.form-widget textarea {
  width: 100%;
}
.form-widget h3:not([class]) {
  margin-top: 2rem;
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.progress {
  position: relative;
  width: 100%;
  height: 0.85rem;
  border-radius: 8px;
  background-color: #CCE4F0;
  margin-right: 4rem;
  margin-left: 0.5rem;
}
.progress-bar {
  background-color: #0077B6;
  border-radius: 8px;
}

.drop-area:has(input.isInvalid) {
  border-color: #C92A03;
  background-color: rgba(201, 42, 3, 0.05);
}
.drop-area:has(input.isInvalid) label {
  color: #C92A03;
}
.drop-area:has(input.isInvalid) .isInvalidMsg {
  display: block;
}

input.isInvalid,
textarea.isInvalid,
select.isInvalid {
  border: 1px solid #C92A03 !important;
  background-color: #FFEEEA !important;
}

.isInvalidMsg {
  display: none;
  color: #FC5830;
}

.isInvalid ~ .isInvalidMsg {
  display: block;
}

input:valid,
textarea:valid {
  border: 1px solid #0077B6 !important;
}
input:valid + p.isInvalidMsg,
textarea:valid + p.isInvalidMsg {
  display: none;
}

.btn-input {
  display: flex;
  height: 100%;
  background-color: #F2F6F7;
  border-radius: 4px;
  border: 1px solid white;
}
.btn-input input, .btn-input[type=checkbox], .btn-input[type=radio] {
  display: none !important;
}
.btn-input input ~ label, .btn-input[type=checkbox] ~ label, .btn-input[type=radio] ~ label {
  display: flex;
  padding: 0.5rem;
  margin: 0;
  width: 100%;
  height: 100%;
  font-size: 1.125rem;
  font-weight: 700;
}
.btn-input input:checked + label, .btn-input[type=checkbox]:checked + label, .btn-input[type=radio]:checked + label {
  background-color: #C92A03;
}

.error-msg {
  color: #C92A03;
}

.document-upload {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid #CCE4F0;
}
.document-upload span {
  display: inline-block;
  margin: 0.5rem;
}
.document-upload button {
  margin-left: auto;
  flex: 0 0 40px;
}
.document-upload button.btn-delete {
  width: 40px;
  height: 40px;
  background-image: url(../images/svg/delete.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border-color: transparent;
}

.drop-area {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  padding-top: calc(1rem + 32px);
  color: #004366;
  text-align: left;
  border: 2px dashed #E5ECF0;
  border-radius: 10px;
  background-color: white;
  background-image: url(../images/svg/draganddrop.svg);
  background-repeat: no-repeat;
  background-position: center top 1rem;
  transition: background-color 0.3s;
}
.drop-area input[type=file] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.drop-area p {
  margin-bottom: 1rem;
  font-weight: 700;
}
.drop-area p span {
  display: flex;
  align-items: center;
}
.drop-area p span:before, .drop-area p span:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #004366;
  margin-left: 1rem;
  margin-right: 1rem;
}
.drop-area small {
  margin-top: 0.5rem;
}
.drop-area__btn {
  cursor: pointer;
  flex: 0 0;
}

.drop-area--single {
  display: grid;
  flex-direction: row;
  grid-template-columns: calc(100% - (2rem + 32px)) calc(2rem + 32px);
  grid-template-rows: auto auto auto;
  background-image: none;
  padding-top: 0.5rem;
}
.drop-area--single__button {
  grid-column: 3/4;
  grid-row: 1/2;
}
.drop-area--single small {
  grid-column: 1/4;
  grid-row: 3/4;
}
.drop-area--single .isInvalidMsg {
  grid-column: 1/4;
  grid-row: 2/3;
}
.drop-area--single button.drop-area__btn {
  width: calc(2rem + 32px);
  height: 32px;
  padding: 0.5rem;
  background-image: url(../images/svg/upload-white.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.drop-area--single:has(+ .document-upload) {
  border-color: transparent;
  background-color: transparent;
  margin-bottom: 0;
  padding-bottom: 0;
}
.drop-area--single:has(+ .document-upload) small,
.drop-area--single:has(+ .document-upload) button {
  display: none;
}
.drop-area--single:has(+ .document-upload) + .document-upload {
  margin-top: 0;
}

.documents-container:has(.drop-area--single):has(.document-upload) {
  margin-bottom: 2rem;
}

.banner-carousel {
  position: relative;
  width: 100%;
  min-height: 200px;
  overflow: hidden;
}
.banner-carousel__container {
  display: flex;
  align-items: center;
}
.banner-carousel__track {
  display: flex;
  transition: transform 0.3s ease-in-out;
}
.banner-carousel__item {
  flex: 0 0 auto;
  /* Adjust for 5 images per row */
  width: 20%;
  box-sizing: border-box;
  padding: 0.25rem;
  border: none;
}
.banner-carousel__item img {
  width: 100%;
  height: 200px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 2px;
}
.banner-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.banner-carousel__container {
  display: flex;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.banner-carousel__container button {
  display: block;
  width: 40px;
  height: 40px;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.banner-carousel__container button:disabled {
  opacity: 0;
}

.banner-carousel__prev {
  background-image: url(../images/svg/banner-carousel-prev.svg);
}

.banner-carousel__next {
  background-image: url(../images/svg/banner-carousel-next.svg);
}

.banner-carousel__title {
  color: #004366;
  text-align: center;
}

.banner-carousel--medium {
  background-color: #0077B6;
}

@media screen and (max-width: 47.9em) {
  .banner-carousel__item {
    width: 33%;
  }
}
@media screen and (max-width: 35.9em) {
  .banner-carousel__item {
    width: 50%;
  }
}
.banner-carousel--light:has(*.banner-carousel__title),
.banner-carousel--medium:has(*.banner-carousel__title) {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.banner-image {
  position: relative;
  display: block;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #F2F6F7;
  border: 1px solid #F2F6F7;
  border-radius: 8px;
}
.banner-image__background {
  width: 100%;
  height: 100%;
  aspect-ratio: 380/120;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  z-index: 0;
}
.banner-image__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 1;
  z-index: 1;
}
.banner-image__subtitle {
  display: block;
  font-size: 1.25rem;
  font-weight: normal;
  line-height: 1.25;
}
.banner-image:hover, .banner-image:focus {
  color: #0077B6;
}

.banner-image--big:before {
  position: absolute;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(transparent 25%, #004366 90%);
  border-radius: 8px;
  z-index: 1;
}
.banner-image--big .banner-image {
  position: relative;
}
.banner-image--big .banner-image__background {
  aspect-ratio: 380/230;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  z-index: 0;
}
.banner-image--big .banner-image__title {
  position: absolute;
  margin-bottom: 0;
  bottom: 1rem;
  top: unset;
  left: 1rem;
  transform: unset;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.banner-image--big .banner-image__subtitle {
  text-transform: none;
}
.banner-image--big .banner-image:hover, .banner-image--big .banner-image:focus {
  color: white;
}

.banner-icon {
  display: block;
  height: 100%;
  padding: 1rem;
  color: #004366;
  background-color: #F2F6F7;
  border-radius: 8px;
}
.banner-icon__icon {
  display: block;
  margin-bottom: 1rem;
  height: 2rem;
  width: 2rem;
  aspect-ratio: 1/1;
}
.banner-icon__title {
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.55;
  text-transform: none;
}
.banner-icon__title + p {
  margin-top: 1rem;
}
.banner-icon__description {
  font-size: 1rem;
  line-height: 1.5;
}
.banner-icon:link:hover, .banner-icon:link:focus {
  background-color: #CCE4F0;
}
.banner-icon:hover, .banner-icon:focus {
  color: #004366;
}

.intro-slider {
  --min-height: calc(90vh - 150px);
  position: relative;
  min-height: calc(90vh - 150px);
  width: 100%;
}
.intro-slider .carousel-mini-nav-btn {
  border-radius: 2px;
  background-color: #F2F6F7;
}
.intro-slider .carousel-mini-nav-btn--active {
  background-color: #C92A03;
}
.intro-slider .carousel-mini-nav {
  top: calc(100% - 2rem) !important;
}
.intro-slider .carousel-mini-prev,
.intro-slider .carousel-mini-next {
  top: 0;
  height: 100%;
  z-index: 2;
  padding: 0;
  background-color: transparent;
  opacity: 1;
}
.intro-slider .carousel-mini-prev:before,
.intro-slider .carousel-mini-next:before {
  content: "";
  display: block;
  height: 100%;
  width: 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 2.5rem;
}
.intro-slider .carousel-mini-prev:hover, .intro-slider .carousel-mini-prev:focus,
.intro-slider .carousel-mini-next:hover,
.intro-slider .carousel-mini-next:focus {
  border-color: transparent;
}

.carousel-mini-prev:before {
  background-image: url(../../assets/images/svg/chevron-big-left.svg);
}

.carousel-mini-next:before {
  background-image: url(../../assets/images/svg/chevron-big-rigth.svg);
}

.intro-slide {
  position: relative;
  display: flex;
  margin-top: auto;
  min-height: var(--min-height);
  width: 100%;
  z-index: 0;
}
.intro-slide::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 119, 182, 0.1);
  background-image: linear-gradient(100deg, #0077B6 40%, transparent);
  z-index: 2;
}
.intro-slide__content {
  position: relative;
  margin-top: calc(var(--min-height) / 4);
  padding-bottom: 4rem;
  padding-left: 0.5rem;
  height: 100%;
  color: white;
  z-index: 3;
}
.intro-slide__content > *:not(:last-child) {
  margin-bottom: 2rem;
}
.intro-slide__content p {
  font-size: 1.125rem;
  line-height: 1.33;
}
.intro-slide__title {
  margin-bottom: 2rem;
  font-family: "Sofia", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: none;
}
.intro-slide__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right top 10%;
     object-position: right top 10%;
}

@media screen and (max-width: 47.9em) {
  .intro-slide__content {
    width: unset;
    padding-left: unset;
    padding-top: 1rem;
    padding-bottom: 2rem;
  }
}
.gallery {
  width: 100%;
}
.gallery__leading {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  z-index: 1;
}
.gallery__leading img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery__navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 3;
}
.gallery__navigation button {
  flex-basis: 1;
  flex-grow: 1;
  background-color: transparent;
  background-repeat: no-repeat;
  border: none;
}
.gallery__navigation button:hover, .gallery__navigation button:focus {
  border: none;
}
.gallery__navigation__prev {
  background-image: url(../images/svg/gallery-prev.svg);
  background-position: left 0.5rem center;
}
.gallery__navigation__next {
  background-image: url(../images/svg/gallery-next.svg);
  background-position: right 0.5rem center;
}
.gallery__thumbs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
.gallery__thumb {
  flex: 0 0 calc(20% - 2px);
}
.gallery__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
.gallery__thumb img.active {
  outline: 4px solid #C92A03;
  outline-offset: -4px;
}

.main {
  padding-top: 4rem;
  padding-bottom: 6.25rem;
}

.widget-area {
  width: 100%;
}

.footer {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.footer div[class*=col]:has(div.footer-sidebar) {
  border-left: 2px solid #CCE4F0;
}
.footer-border > .row:not(:last-child) {
  margin-bottom: 2rem;
}
.footer-border > .row:not(:last-child):after {
  content: "";
  display: block;
  width: calc(100% - 0.6666666667rem);
  height: 2px;
  background-color: #CCE4F0;
}
.footer hr {
  background-color: #CCE4F0;
}
.footer-logo {
  display: block;
  width: 350px;
  height: 60px;
  background-image: url(../images/svg/logo-footer.svg);
  background-repeat: no-repeat;
  background-position: left top;
  margin-bottom: 2rem;
}
.footer a:not([class]) {
  color: white;
  border-bottom: 1px dotted transparent;
}
.footer a:not([class]):hover, .footer a:not([class]):focus, .footer a:not([class]):active {
  border-bottom: 1px dotted #CCE4F0;
}
.footer a[href^="tel:"] {
  display: inline-block;
}
.footer-address:before, .footer-mail:before, .footer-phone:before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
}
.footer-address:before {
  background-image: url(../images/svg/footer-map.svg);
}
.footer-mail:before {
  background-image: url(../images/svg/footer-mail.svg);
}
.footer-phone:before {
  background-image: url(../images/svg/footer-phone.svg);
}
.footer .social-link {
  width: 1.5rem;
  height: 1.5rem;
}

.scroll-top {
  position: fixed;
  padding: 0;
  width: 40px;
  height: 40px;
  top: 90vh;
  right: 0.5rem;
  border-radius: 50%;
  background-color: #80BBDB;
}
.scroll-top:after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../images/svg/chevron-up-white.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.scroll-top:hover, .scroll-top:focus, .scroll-top:active {
  background-color: #1A85BD;
}

.breadcrumbs {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  line-height: 1.5;
  font-weight: 600;
}
.breadcrumbs__item a {
  display: block;
  color: inherit;
}
.breadcrumbs__item:first-of-type a {
  font-weight: 700;
}
.breadcrumbs__item:first-of-type a:after {
  content: "";
  margin-top: 0.125rem;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #004366;
}
.breadcrumbs__item:not(:last-of-type):after {
  top: 0;
  content: "";
  display: block;
  margin-left: 0.5rem;
  margin-right: 0.25rem;
  width: 8px;
  height: 14px;
  background-image: url(../images/svg/divider.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.page-header {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 2rem;
  min-height: 176px;
  overflow: hidden;
  color: white;
  background-color: #004366;
  z-index: 0;
}
.page-header__bckgrnd {
  position: absolute;
  height: 100%;
  min-height: 176px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}
.page-header__bckgrnd img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
}
.page-header__bckgrnd:after {
  content: "";
  opacity: 0.85;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #004366, #0077B6);
  z-index: 1;
}
.page-header .breadcrumbs {
  margin-bottom: 1rem;
}
.page-header .page-tag {
  color: white;
  border-color: white;
}
.page-header .page-tag:after {
  content: "";
  filter: brightness(0) invert(1);
}

.post-header {
  margin-bottom: 2rem;
}
.post-header__image {
  width: 100%;
  max-height: 434px;
}
.post-header__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.post-header__social {
  margin-top: 2rem;
  display: flex;
  align-items: center;
}
.post-header__social p {
  margin-bottom: 0;
  margin-right: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}
.post-header .social-link {
  background-size: 24px;
}
.post-header .social-link--facebook {
  background-image: url(../images/svg/social-fb-dark.svg);
}
.post-header .social-link--yt {
  background-image: url(../images/svg/social-yt-dark.svg);
}
.post-header .social-link--x {
  background-image: url(../images/svg/social-x-dark.svg);
}
.post-header .social-link--insta {
  background-image: url(../images/svg/social-insta-dark.svg);
}

@media screen and (min-width: 48em) {
  .post-header {
    padding-right: 4rem;
  }
  .post-header__social p {
    margin-left: auto;
  }
}
.spacer {
  margin-bottom: 0.5rem;
}

.spacer-m {
  margin-bottom: 0.5rem;
}

.spacer-sm {
  margin-bottom: 0.5rem;
}

.spacer-xs {
  margin-bottom: 0.25rem;
}

.spacer-xxs {
  margin-bottom: 0.125rem;
}

.spacer-l {
  margin-bottom: 1rem;
}

.spacer-xl {
  margin-bottom: 2rem;
}

div[class*=spacer] {
  display: block;
  border: 1px solid rgba(0, 119, 182, 0.2);
}

.top-nav {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: white;
  background-color: #004366;
}
.top-nav > .container:first-of-type {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-nav__list {
  width: 100%;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.top-nav__item {
  display: inline-flex;
  align-items: center;
  font-size: 0.87rem;
  font-weight: 500;
  line-height: 1.42;
}
.top-nav__link,
.top-nav a {
  color: inherit;
}
.top-nav__link:hover, .top-nav__link:focus,
.top-nav a:hover,
.top-nav a:focus {
  color: white;
  text-decoration: underline;
}

.top-nav .social-nav {
  align-items: center;
}
.top-nav .social-link {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

@media screen and (min-width: 48em) {
  .top-nav__toggler {
    display: none;
  }
  .top-nav__toggler[aria-expanded=false] + .top-nav__list {
    display: flex;
  }
  .top-nav .social-link span {
    visibility: hidden;
  }
}
@media screen and (max-width: 47.9em) {
  .top-nav__toggler {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    padding: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
  }
  .top-nav__toggler[aria-expanded=false] {
    background-image: url(../images/svg/hamburget-top.svg);
  }
  .top-nav__toggler[aria-expanded=false] + .top-nav__list {
    display: none;
  }
  .top-nav__toggler[aria-expanded=true] {
    position: fixed;
    background-image: url(../images/svg/chevron-up-white.svg);
    z-index: 9999;
  }
  .top-nav__toggler[aria-expanded=true] + .top-nav__list {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 9000;
    background-color: #004366;
    padding: 0.5rem 0;
    padding-top: 80px;
  }
  .top-nav__toggler ~ .top-search__btn {
    border-radius: 0;
    height: 40px;
  }
  .top-nav__toggler:hover, .top-nav__toggler:focus {
    background-color: transparent;
  }
  .top-nav__item {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
  }
  .top-nav__item:not(:last-child) {
    border-bottom: 1px solid #CCE4F0;
  }
  .top-nav__link {
    display: block;
    line-height: 1.5;
    padding: 0.5rem calc((100% - 540px) / 2);
  }
  .top-nav .social-list {
    display: block;
  }
  .top-nav .social-list li:not(:last-child) {
    border-bottom: 1px solid #CCE4F0;
  }
  .top-nav .social-link {
    display: block;
    width: 100%;
    height: unset;
    padding: 0.5rem calc((100% - 540px) / 2);
    line-height: 1.5;
    background-size: 18px;
    background-position: center right calc((100% - 540px) / 2);
  }
}
@media screen and (max-width: 35.9em) {
  .top-nav {
    padding: 0;
  }
  .top-nav__link {
    padding: 0.5rem 1rem;
  }
  .top-nav .social-link {
    padding: 0.5rem 1rem;
    background-position: center right 1rem;
  }
}
.main-nav {
  width: 100%;
  background-color: #F2F6F7;
  padding-top: 2rem;
  padding-bottom: 0;
}
.main-nav .container {
  position: relative;
  z-index: 1;
}
.main-nav .brand {
  display: inline-block;
  margin-bottom: 2rem;
  width: 70%;
}
.main-nav__container {
  position: relative;
  background-color: #F2F6F7;
}
.main-nav__list {
  position: relative;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.main-nav__link, .main-nav__toggle {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 3px;
  position: relative;
  padding: 1rem 1rem;
  color: #004366;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #CCE4F0;
}
.main-nav__link:active, .main-nav__link:focus, .main-nav__link:hover, .main-nav__toggle:active, .main-nav__toggle:focus, .main-nav__toggle:hover {
  background-color: transparent;
  border: none;
}
.main-nav__toggle:after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-position: center;
}
.main-nav__toggle[aria-expanded=false]:after {
  background-image: url(../images/svg/chevron-right-dark.svg);
}
.main-nav__toggle[aria-expanded=true]:after {
  background-image: url(../images/svg/chevron-up-primary.svg);
}
.main-nav__toggler {
  position: absolute;
  width: 32px;
  height: 32px;
  right: 1rem;
  top: 1rem;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-nav__toggler[aria-expanded=false] {
  background-image: url(../images/svg/hamburger.svg);
}
.main-nav__toggler[aria-expanded=true] {
  background-image: url(../images/svg/close-x.svg);
}

.main-nav__toggle[aria-expanded=false] + .sub-nav__container {
  display: none;
}

.main-nav__toggle[aria-expanded=true] + .sub-nav__container {
  display: block;
}

.sub-nav__container {
  padding: 1rem;
  width: 100%;
  top: 100%;
  left: 0;
  border-bottom: 1px solid #CCE4F0;
}
.sub-nav__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.sub-nav__link {
  display: block;
  padding: 0.5rem 0;
  color: #004366;
}
.sub-nav__link:hover, .sub-nav__link:focus {
  color: #C92A03;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .main-nav__list {
    width: 100%;
    display: inline-block;
    flex: 1;
    flex-shrink: 2;
  }
  .main-nav__item {
    flex-shrink: 0;
  }
  .main-nav__link, .main-nav__toggle {
    font-size: 0.8rem;
    padding: 0.5rem;
    word-wrap: break-word;
  }
  .sub-nav__container {
    background-color: white;
  }
}
@media screen and (min-width: 62em) {
  .main-nav .brand {
    display: block;
    margin-bottom: 2rem;
    width: 413px;
    height: 70px;
  }
  .main-nav__container {
    background-color: white;
  }
  .main-nav__list {
    position: relative;
    width: 100%;
    display: flex;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  .main-nav__item {
    flex-shrink: 0;
  }
  .main-nav__link, .main-nav__toggle {
    height: 100%;
    align-items: center;
    gap: 3px;
    position: relative;
    padding: 1rem 1rem;
    border-bottom: 0;
  }
  .main-nav__link:hover, .main-nav__link:focus, .main-nav__link[aria-expanded=true], .main-nav__toggle:hover, .main-nav__toggle:focus, .main-nav__toggle[aria-expanded=true] {
    color: #004366;
    background-color: transparent;
  }
  .main-nav__link:hover:before, .main-nav__link:focus:before, .main-nav__link[aria-expanded=true]:before, .main-nav__toggle:hover:before, .main-nav__toggle:focus:before, .main-nav__toggle[aria-expanded=true]:before {
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #C92A03;
  }
  .main-nav__toggle[aria-expanded=false]:after {
    background-image: url(../images/svg/chevron-down-primary.svg);
  }
  .main-nav__toggle:hover:after, .main-nav__toggle:focus:after, .main-nav__toggle[aria-expanded=true]:after {
    background-image: url(../images/svg/chevron-down-red.svg);
  }
  .main-nav--scroll {
    position: fixed;
    top: 0;
    padding: 0;
    box-shadow: 0px 4px 20px 0px rgba(0, 67, 102, 0.3);
    z-index: 9000;
  }
  .main-nav--scroll .brand {
    display: none;
  }
  .main-nav__toggle[aria-expanded=false] + .sub-nav__container {
    display: none;
  }
  .main-nav__toggle[aria-expanded=true] + .sub-nav__container {
    display: block;
  }
  .sub-nav__container {
    position: absolute;
    padding: 1rem;
    width: 100%;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid var(--CCE4F0, #CCE4F0);
    box-shadow: 0px 4px 20px 0px rgba(0, 67, 102, 0.3);
  }
}
.sidebar-widgets {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar .file {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.sidebar .file__title {
  font-weight: 700;
  line-height: 1.3;
}
.sidebar .file__title:before {
  display: none;
}
.sidebar .file__subtitle {
  font-size: 0.875rem;
}
.sidebar .file__subtitle, .sidebar .file__meta {
  display: block;
}
.sidebar .file:not(:last-child) {
  border-bottom: 1px solid #CCE4F0;
}
.sidebar .file:hover, .sidebar .file:focus {
  background-color: transparent;
}
.sidebar .news-card {
  padding: 1rem;
  display: block;
  background-color: #F2F6F7;
  border-radius: 8px;
}
.sidebar .news-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.11;
}
.sidebar .form-widget > .row {
  display: block !important;
}
.sidebar .form-widget > .row > div[class*=col] {
  width: 100%;
}

.footer-bottom ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-bottom ul li {
  display: inline-block;
}
.footer-bottom ul li:not(:last-child) {
  margin-right: 1rem;
}
.footer-bottom ul a {
  display: inline-block;
  color: inherit;
  font-size: 0.87rem;
  line-height: 1.42;
  font-weight: 700;
}

.footer-title {
  font-weight: 900;
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-top: 1.37rem;
}
.footer-list li:not(:last-child) {
  margin-bottom: 0.25rem;
}
.footer-list a:not([class]) {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
}

div[class*=col]:has(ul.footer-list) .footer-title + .footer-list {
  padding-top: 0;
}

.credentials {
  font-size: 0.87rem;
  font-weight: 700;
  line-height: 1.42;
  margin-bottom: 0;
}

.home-section {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.home-section .section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.bckgrnd-p50 {
  background-color: #F2F6F7;
}

.bckgrnd-image {
  position: relative;
  display: flex;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  min-height: 350px;
  overflow: hidden;
  color: white;
}
.bckgrnd-image__img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.bckgrnd-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(0, 119, 182, 0.5) 0%, rgba(0, 119, 182, 0.5) 100%);
  z-index: -1;
}

#gdprRequired {
  display: none;
}

@media screen and (min-width: 48em) {
  .grid {
    display: grid;
    grid-template-columns: 2fr;
    grid-template-columns: auto;
  }
  .grid__item {
    width: 100%;
  }
  .grid__featured {
    grid-column: 1/3;
  }
  .grid .news-card {
    margin-bottom: 0;
  }
  .grid .news-card__title {
    font-size: 1.125rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 62em) {
  .grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .grid__item {
    width: 100%;
  }
  .grid__item:not(.grid__featured) .news-card__thumb img {
    aspect-ratio: unset;
    max-height: 197px;
  }
  .grid__featured {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
.error {
  width: 100%;
  min-height: 300px;
  height: 100%;
}
.error-title {
  margin-bottom: 0;
  color: #004366;
  font-size: 4rem;
  font-weight: 800;
  text-align: center;
  line-height: 1;
}
.error-subtitle {
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}
.error--404 {
  background-image: url(../images/svg/404.svg);
  background-position: center top;
  background-repeat: no-repeat;
}
.error--500 {
  background-image: url(../images/svg/500.svg);
  background-position: center top;
  background-repeat: no-repeat;
}

.video-embed {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  width: 100%;
  aspect-ratio: 16/9;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=main.css.map */
.success-alert, .error-alert {
  margin-bottom: 1rem;
  padding: 2rem;
  color: black;
  font-size: 1.125rem;
  border-radius: 2px;
}
.error-alert {
  background-color: #ffeeea;
  border: 1px solid #E04E2B;
}
.success-alert {
  background-color: rgba(132, 209, 0, 0.25);
  border: 1px solid #84d100;
}