* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Fira Sans BGR", sans-serif;
  scroll-behavior: smooth;
}


header small {
  font-size: 18px;
}

body {
  font-family: "Fira Sans BGR", sans-serif;
  min-height: 100vh;
  flex-direction: column;
  display: flex;
}

header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, #0647AD, #111699);
  padding: 0 140px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header>* {
  height: 100%;
}

header>a {
  float: left;
  display: flex;
  align-items: center;
  text-decoration: none;
}

header .brand {
  color: #fff;
  font-size: 1.3em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  text-align: left;
  left: 0;
  display: block;
  display: inline-block;
  line-height: normal;
  height: auto;
  padding: 0;
}

.menu-btn {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  margin-left: auto;
  z-index: 100;
}

.menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

.navigation {
  height: 100%;
  float: left;
}

.navigation-items {
  height: 100%;
}

header .navigation .navigation-items a {
  position: relative;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
  font-weight: bold;
}

header .navigation .navigation-items a:before {
  content: '';
  position: absolute;
  background: #fff;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  transition: 0.5s ease;

}

header .navigation .navigation-items a:hover:before {
  width: 100%;
}

.navigation-items .nav-links {
  display: inline-flex;
  height: inherit;
  margin: auto;
  align-items: center;
}

.nav-links li {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-bottom: 20px;
  font-size: 16px;
  text-align: left;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  margin-left: 20px;
}

.navigation-items ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navigation-items ul li {
  position: relative;
}

.nav-dropdown {
  display: none;
  min-width: 320px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.nav-links>li>.nav-dropdown {
  background:linear-gradient(to bottom, #0647AD, #111699);
  position: absolute;
}

.nav-dropdown .nav-dropdown {
  position: static;
  box-shadow: none;
  margin-left: 20px;
}

.navigation-items ul li a:not(:only-child):not(.search):after {
  content: ' ▾';
  vertical-align: middle;
}

.nav-dropdown li a:not(:only-child):not(.search):after {
  content: ' ▸';
}

.navigation-items ul li a:not(:only-child)+.menu-bar {
  margin-top: 0;
}

.navigation-items ul li a:has(+ .menu-bar):after {
  content: none;
}

.nav-dropdown li {
  padding: 5px 0px;
}

.nav-dropdown li a {
  display: block;
  word-wrap: break-word;
  white-space: normal;
  text-align: left;
  padding-left: 0;
}

.nav-links>li {
  display: inline-block;
  padding: 0 2px;
}

.navigation-items ul li img {
  cursor: pointer;
}

.search i {
  font-size: 32px;
}

.search-container {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  min-width: 500px;
}

.search-container.active {
  background: linear-gradient(to bottom, #0647AD, #111699);
  display: block;
  animation: slideDown 0.3s ease-out;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-input {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 300px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.search-input:focus {
  border-color: #111699;
}

.search-button {
  background: #111699;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s;
}

.search-button:hover {
  background: #0056b3;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  margin-top: 100px;
}

.table p {
  background: #F0F0F0;
  padding: 0;
}

#documentModal p {
  background: white;
}

.col-10 ul {
  background: none;
} 

#myUL {
  list-style-type: none;
}

#myUL {
  margin: 0;
  padding: 0;
}

#myUL li {
  padding-bottom: 20px;
  font-size: 16px;
  text-align: left;
}

#title {
  text-align: center;
  margin-bottom: 15px;
  margin-top: 15px;
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 73%, rgba(211, 211, 211, 1) 80%);
  text-decoration: none;
  font-size: 18px;
  position: relative;
  display: block;
  width: 100%;
  border-radius: 3px;
  box-shadow: -3px -3px 7px #ffffff73, 10px 10px 5px rgba(94, 104, 121, 0.288);
}

#title:hover {
  color: darkslategray;
}

#static_title {
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 15px;
  margin-bottom: 30px;
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 73%, rgba(211, 211, 211, 1) 80%);
  font-size: 18px;
  position: relative;
  display: block;
  border-radius: 3px;
  box-shadow: -3px -3px 7px #ffffff73, 10px 10px 5px rgba(94, 104, 121, 0.288);
}

.caret {
  cursor: pointer;
  user-select: none;
}

.structure {
  cursor: pointer;
  user-select: none;
}

.caret::before {
  content: "\25BA";
  color: black;
  display: inline-block;
  margin-right: 6px;
}

.caret-down::before {
  transform: rotate(90deg);
}

.nested {
  display: none;
  list-style-type: none;
}

.nested li {
  transition: transform 0.3s ease;
  padding-bottom: 15px;
}

.nested li:hover {
  transform: translate(0, -3px);
}

.nested li a {
  text-decoration: none;
  padding-bottom: 5px;
  padding-top: 5px;
  padding-left: 10px;
  color: black;
  display: inline-block;
  line-height: inherit;
  width: 100%;
  border-radius: 3px;
  background: linear-gradient(270deg, rgba(211, 211, 211, 1) 0%, rgba(221, 221, 221, 1) 35%, rgba(255, 255, 255, 1) 100%);
  box-shadow: -3px -3px 7px #ffffff73, 10px 10px 5px rgba(94, 104, 121, 0.288);
}

.nested li a:hover {
  color: rgba(136, 151, 196, 0.7);

}

.nested li img {
  margin-right: 10px;

  vertical-align: top;
}

.nested li i {
  margin-right: 10px;
}

.active {
  display: block;
}

@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/firasans/v17/va9E4kDNxMZdWfMOD5Vvk4jLeTY.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

#myUL {
  list-style-type: none;
}

#myUL li a{
  color: #000000;
  text-decoration: none;
}

#links-table {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#links-table li {
  font-size: 16px;
  text-align: left;
  transition: transform 0.3s ease;
  padding-bottom: 15px;
  font-weight: bold
}

#links-table li:hover {
  transform: translate(0, -3px);
}

#links-table li a {
  text-decoration: none;
  padding-bottom: 5px;
  padding-top: 5px;
  padding-left: 10px;
  color: black;
  display: inline-block;
  line-height: inherit;
  width: 100%;
  border-radius: 3px;
  background: linear-gradient(270deg, rgba(211, 211, 211, 1) 0%, rgba(221, 221, 221, 1) 35%, rgba(255, 255, 255, 1) 100%);
  box-shadow: -3px -3px 7px #ffffff73, 10px 10px 5px rgba(94, 104, 121, 0.288);
}

div.document {
  width: 99%;
  height: inherit;
  align-items: center;
  margin: 15px auto;
  cursor: pointer;
  background: linear-gradient(270deg, rgba(211, 211, 211, 1) 0%, rgba(221, 221, 221, 1) 35%, rgba(255, 255, 255, 1) 100%);
  border-radius: 3px;
  box-shadow: -3px -3px 7px #ffffff73, 10px 10px 5px rgba(94, 104, 121, 0.288);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding-right: 30px;
}

.document-icon img {
  width: 50px;
  height: 50px;
}

.document-title {
  margin: 0;
  text-align: left;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  margin-left: 10px;
}

.document-title h6 {
  margin: 0;
}

.document-download i {
  font-size: 26px;
  transition: border 0.3s ease;
}

.document-download a {
  text-decoration: none;
  color: black;
}

.document-download {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 40px;
  text-align: center;
  cursor: pointer;
  padding: 0px 10px;
}

.document-download:hover {
  border: 2px solid #ffffff73;
  border-radius: 5px;
}

.btn {
  color: #071d7e;
}

.document-download i {
  pointer-events: none;
}

.document-date {
  font-size: 12px;
  color: #777;
  width: 50%;
  display: inline;
}

.document-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  position: absolute;
  right: 10px;
}

.document-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
}

.document-active {
  font-size: 12px;
  text-align: right;
  width: 50%;
  display: inline;
  padding-right: 10px;
}

.filter-row {
  display: flex;
  width: auto;
  height: auto;
}

.filter-col {
  display: flex;
  align-items: center;
}

#filterDocumentForm {
  background: transparent;
  padding: 0;
  margin: auto;
}

.filter-container {
  display: flex;
  align-items: center;
  margin: 0 15% 0 15%;
}

.filter-icon {
  margin-right: 10px;
  font-size: 20px;
  display: flex;
  align-items: center;
  height: 38px;
  color: #495057;
}

#documentFilterForm select {
  min-width: 150px;
  height: 38px;
}

.spans {
  display: flex;
}

.address,
.phone,
.contact-email {
  margin-bottom: 8px;
  margin-left: 15px;
  background-color: #F0F0F0;
}

.address h6,
.phone h6,
.contact-email h6 {
  font-weight: bold;
}

h2 {
  margin-top: 0;
  color: #333;
  text-align: center;
}

.map-container {
  width: 100%;
  max-width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}

.map-outer-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.scroll-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  padding: 10px;
}

.scroll-container img {
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.2s;
}

.scroll-container img:hover {
  transform: scale(1.05);
}

@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/firasans/v17/va9E4kDNxMZdWfMOD5Vvk4jLeTY.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

.card {
  border: 1px solid #b8bcc2;
  color: black;
  transition: 0.3s;

}

.card:hover {
  border: solid 4px #9fa2a6;
  border-color: #9fa2a6;
  color: #9fa2a6;
  border-radius: 6px;
  display: inline-block;
}

.share-button-news {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #003cff;
  color: white;
  text-align: center;
  line-height: 50px;
  margin: 10px;
  font-size: 24px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.share-button-news:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}

.share-button-news i {
  line-height: inherit;
}

.share-button-news i {
  border: none;
  outline: none;
  box-shadow: none;
  line-height: normal;
  border-radius: 50%;
}

#upcoming-table {
  background: #F0F0F0;
}

#upcoming-table li {
  list-style: none;
  margin: 10px 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#upcoming-table li:hover {
  transform: translate(0, -3px);
}


.small-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.3) !important;
  pointer-events: none !important;
}

.modal-dialog {
  max-width: 800px;
  width: 90%;
}

.modal-content {
  padding: 10px;
  border-radius: 10px;
}

.modal-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
}

.modal-body p {
  font-size: 18px;
  text-align: center;
  margin-top: 15px;
}

.uppercase-text {
  text-transform: uppercase;
  font-weight: bold;
  color: #000000;
  font-size: 16px;
  margin: 10px 0;
}

footer {
  width: 100%;
  height: 100%;
  background:linear-gradient(to bottom, #0647AD, #111699);
  padding: 20px 0;
  margin-top: auto;
  margin-bottom: 0;
}


.footerContainer1 {
  justify-content: space-between;
  padding-top: 0;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.socialIcons1 {
  justify-content: center;
  display: flex;
  padding: 0;
}

.socialIcons1 a {
  text-decoration: none;
  padding: 10px;
  background-color: white;
  margin: 10px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.socialIcons1 a i::before {
  display: block;
  font-size: 2em;
  color: #071d7e;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 60px;
}

.socialIcons1 a:hover {
  background-color: #3c64d2;
  transition: 0.5s;
}

.socialIcons1 a:hover i {
  color: blue;
  transition: 0.5s;
}

.footerBottom {
  padding: 10px 0;

  text-align: center;
  justify-content: flex-end;

}

.footerBottom p {
  color: white;
  font-size: 18px;
  padding: 20px 0;
  margin: 0;
}

.img_footer img {
  margin: auto;
  padding: 10px;
  border-radius: 20px;
  width: 110px;
  height: 110px;
  cursor: pointer;
}

.statement-header {
  text-align: center;
  margin-bottom: 30px;
}

.statement-header img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.statement-date {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.statement-content {
  font-size: 16px;
}

.statement-content h1,
.statement-content h2,
.statement-content h3,
.statement-content h4,
.statement-content h5,
.statement-content h6 {
  background: none;
}

.statement-content strong{
  background: none;
  padding-left: 0;
}

.statement-content span {
  background: none;
}

@media screen and (max-width: 768px) {
  .footerNavigationContainer {
    flex-direction: column;
    gap: 20px;
  }

  .footerNavigation ul li {
    margin-bottom: 10px;
  }
}

.footerNavigationContainer {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.footerNavigation {
  text-align: center;
  padding: 0;
}

.footerNavigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;/
}

.footerNavigation ul li {
  margin: 0;
}

.footerNavigation ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  opacity: 0.7;
  transition: 0.6s;
}

.footerNavigation ul li a:hover {
  opacity: 1;
  color: #3c6cd2;
}

@media screen and (max-width: 768px) {
  .footerNavigation ul {
    flex-direction: column;
    gap: 10px;
  }
}

@media (min-width: 1201px) {
  .menu-btn {
    display: none;
  }

  .navigation-items {
    display: flex;
  }

  .nav-links {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 1850px) {
  header {
    padding: 15px 100px;
  }

  .nav-links li a {
    margin-left: 16px;
  }
}

@media (max-width: 1600px) {
  header {
    padding: 15px 70px;
    justify-content: center;
  }

  header .brand {
    font-size: 1.2em;
  }

  .nav-links li a {
    font-size: 14px;
    margin-left: 20px;
  }

  header #logo {
    margin-right: 20px;
  }

  .nav-dropdown {
    min-width: 230px;
  }
  .nav-dropdown .nav-dropdown {
    margin-right: 10px;
  }
}

@media (max-width: 1500px) {
  header {
    padding: 15px 30px;
  }

  header .brand {
    font-size: 1.1em;
  }

  .nav-dropdown {
    min-width: 210px;
  }
}

@media (max-width: 1400px) {
  header {
    padding: 15px 25px;
  }

  header .brand {
    margin-right: 20px;
  }

  header #logo {
    margin-right: 10px;
  }

  .nav-links li a {
    font-size: 14px;
    margin-left: 15px;
  }

  .nav-dropdown .nav-dropdown {
    margin-left: 10px;
  }
}



@media (max-width: 1280px) {
  header {
    padding: 15px 10px;
  }

  header .brand {
    font-size: 1em;
  }

  .nav-links li a {
    font-size: 13px;
    margin-left: 10px;
  }
}

@media (max-width: 1200px) {
  header {
    padding: 15px 20px;
    position: relative;
    justify-content: flex-start;
  }

  header .brand:not(img) {
    margin: auto 0;
    left: 0;
  }

  main,
  .main-content,
  body>*:not(header):first-of-type {
    margin-top: 10px;
    position: relative;
  }

  .menu-btn {
    display: block;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);

  }

  .moved-to-main {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .moved-to-main>a {
    padding: 10px 15px;
    display: block;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
  }

  .moved-to-main .nav-dropdown {
    position: static;
    width: 100%;
    margin-left: 20px !important;
    box-sizing: border-box;
    padding-right: 15px;
  }

  .moved-to-main .nav-dropdown a {
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
    padding: 8px 15px;
  }

  .navigation {
    display: none !important;
    height: auto;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #073a7e;
  }

  .navigation.active {
    display: block !important;
  }

  .navigation-items .nav-links {
    display: block;
    flex-direction: column;
    padding: 20px;
  }

  .nav-links>li {
    display: block;
    margin: 10px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .nav-dropdown {
    position: static !important;
    width: 100%;
    min-width: auto;
    box-shadow: none;
    margin-left: 20px !important;
    margin-top: 5px;
    background: transparent !important;
    box-sizing: border-box;
    padding-right: 15px;
  }

  .nav-dropdown li a {
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
    padding: 8px 15px 8px 35px;
    width: 100%;
  }

  .nav-links li a {
    padding: 10px 15px;
    display: block;
    width: 100%;
    margin-left: 0;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
  }

  .nav-dropdown .nav-dropdown {
    position: static;
    left: auto;
    top: auto;
    margin-left: 15px !important;
  }

  .search-container.mobile-search {
    position: static;
    width: 100%;
    min-width: 100%;
    margin: 0;
    padding: 10px 15px;
    box-shadow: none;
    background: transparent;
    box-sizing: border-box;
  }

  .mobile-search .search-box {
    width: 100%;
    display: flex;
    gap: 10px;
  }

  .mobile-search .search-input {
    flex: 1;
    min-width: 0;
  }

  .mobile-search .search-button {
    white-space: nowrap;
  }

  .nav-links li .search {
    display: block;
    width: 100%;
    padding: 10px 15px;
  }
}

@media (max-width: 768px) {
  

  #logo {
    height: auto;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 480px) {
  header {
    padding: 10px 15px;
  }

  header .brand:not(img) {
    font-size: 0.8em;
  }
  small {
    font-size: 0.8em;
  }

  .menu-btn {
    margin: 0 30px;
  }

  .brand {
    font-size: 1em;
  }

  #logo {
    height: auto;
    margin: 0 auto;
    display: block;
  }
}