html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  background: #0C263D;
  min-height: 100dvh;
}
body.overflow {
  overflow: hidden;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  background-image: url("../../img/bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 230px;
}
@media (max-width: 800px) {
  body {
    background-position: 0 150px;
    background-size: contain;
  }
}

.container {
  min-height: calc(100dvh - 122px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.max-width {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

@media (min-width: 801px) {
  .hide-desktop {
    display: none !important;
  }
}

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

header {
  padding: 15px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: 200px;
}
@media (max-width: 800px) {
  header {
    height: 160px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
header .logo {
  max-width: 200px;
  margin: 0;
}
@media (max-width: 800px) {
  header .logo {
    max-width: 90px;
  }
}
header .logo-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 800px) {
  header .logo-wrapper {
    left: 50%;
    top: 10px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
header .language-switcher {
  position: relative;
}
header .language-switcher-wrapper {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-left: auto;
}
@media (max-width: 800px) {
  header .language-switcher-wrapper {
    margin-top: 20px;
  }
}
header .language-switcher-btn {
  margin: 0;
  border: none;
  outline: none;
  background: #0c2a45;
  width: 100%;
  padding: 8px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-radius: 3px;
  cursor: pointer;
}
header .language-switcher-btn span {
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
}
header .language-switcher-btn > span {
  padding-left: 10px;
}
header .language-switcher-btn > span > span {
  padding: 0 5px;
}
header .language-switcher-content {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #0c2a45;
  -webkit-box-shadow: 2px 2px 5px #1e1b1c;
  box-shadow: 2px 2px 5px #1e1b1c;
  border-radius: 3px;
}
@media (max-width: 800px) {
  header .language-switcher-content {
    min-width: 130px;
  }
}
header .language-switcher-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 7px 10px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
header .language-switcher-link > span {
  padding-left: 10px;
}
header .language-switcher-link:hover {
  background: rgb(19, 80, 136);
}
header .language-switcher.show .language-switcher-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .search-wrapper {
  margin-left: auto;
}
@media (max-width: 800px) {
  header .search-wrapper {
    margin-left: unset;
  }
}
header .search-label {
  color: #fff;
  padding: 10px;
  font-weight: 500;
}
@media (max-width: 800px) {
  header .search-label {
    padding-left: 0;
  }
}
header .search-input {
  padding: 0 10px;
  border: none;
  outline: none;
  margin: 0;
  border-radius: 5px 0 0 5px;
  -webkit-box-shadow: 2px 2px 5px #1e1b1c;
  box-shadow: 2px 2px 5px #1e1b1c;
  background: #DCE0E3;
  min-width: 160px;
}
@media (max-width: 800px) {
  header .search-input {
    width: 100%;
  }
}
header .search-input:focus {
  border: none;
  outline: none;
}
header .search-button {
  cursor: pointer;
  border: none;
  padding: 0 10px;
  margin: 0;
  background: rgba(22, 62, 99, 0.5);
  border-radius: 0 5px 5px 0;
  -webkit-box-shadow: 2px 2px 5px #1e1b1c;
  box-shadow: 2px 2px 5px #1e1b1c;
}
header .search-button svg {
  fill: rgba(22, 62, 99, 0.5);
}
header .search-input, header .search-button {
  height: 40px;
}

.main-navigation .menu {
  margin: 0 15px 15px 15px;
  padding: 10px 20px;
  border-radius: 8px;
  background: rgba(22, 62, 99, 0.5);
  border: solid 2px rgb(19, 80, 136);
  text-shadow: 1px 1px 3px #1e1b1c;
  -webkit-box-shadow: 2px 2px 5px #1e1b1c;
  box-shadow: 2px 2px 5px #1e1b1c;
}
.main-navigation .menu > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 800px) {
  .main-navigation .menu > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 40px;
  }
}
.main-navigation a {
  color: #fff;
  text-decoration: none;
  margin: 0;
  padding: 10px 15px;
  text-transform: uppercase;
  font-size: 12px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 800px) {
  .main-navigation a {
    font-size: 14px;
  }
}
.main-navigation a:not(:last-child) {
  margin-right: 2px;
}
.main-navigation a.active, .main-navigation a:hover {
  background: rgb(19, 80, 136);
}
.main-navigation .hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  top: 35px;
  left: 15px;
}
.main-navigation .hamburger div {
  width: 25px;
  height: 2px;
  background-color: white;
  margin: 4px 0;
}
.main-navigation .close-btn {
  display: none;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 15px;
  top: 15px;
  cursor: pointer;
  margin-left: auto;
}
.main-navigation .close-btn::before,
.main-navigation .close-btn::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 2px;
  background-color: white;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.main-navigation .close-btn::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.main-navigation .close-btn::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (max-width: 800px) {
  .main-navigation .nav .menu {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    overflow: auto;
    background-color: rgba(22, 62, 99, 0.98);
    border-radius: 0;
    border: none;
  }
  .main-navigation .nav .menu.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
  }
  .main-navigation .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main-navigation .close-btn {
    display: block;
  }
  .main-navigation .hide-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

.content .columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
}
.content .sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 450px;
  padding: 20px;
  border-radius: 10px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.content .sidebar a {
  color: #fff;
  text-decoration: none;
  background: #0c2a45;
  padding: 12px 15px;
  margin: 0 0 7px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.content .sidebar a.active, .content .sidebar a:hover {
  background: rgb(19, 80, 136);
}
.content .main-content {
  margin: 0 30px;
  padding: 20px;
  width: 100%;
}
@media (max-width: 800px) {
  .content .main-content {
    padding: 20px 0;
    margin: 0;
  }
}
.content .main-content-text {
  color: #fff;
  font-size: 14px !important;
}
.content .main-content-text h2 {
  margin-bottom: 20px;
}
.content .main-content-text h2[style] {
  text-align: center !important;
}
.content .main-content-text p {
  margin-bottom: 20px;
  line-height: 18px !important;
}
.content .main-content-text p span[style] {
  font-size: 14px !important;
  line-height: 18px !important;
  font-family: "Inter", sans-serif !important;
}
.content .main-content-text p span[style^="color: #0000ff;"] {
  color: #ff9900 !important;
}
.content .main-content-text p a {
  color: #ff9900 !important;
}
.content .main-content-text span[style="font-size: small;"] {
  font-size: 14px !important;
}
.content .main-content-text br {
  display: block;
  content: "";
  margin-top: 20px;
}
.content .main-content-text a {
  text-decoration: none;
}
.content .main-content-text a:has(img) {
  display: inline-block;
  margin: 0 10px;
}
@media (max-width: 800px) {
  .content .main-content-text a:has(img) {
    margin: 0;
  }
  .content .main-content-text a:has(img) img {
    max-width: 80%;
  }
}
.content .main-content-text div:has(a[onclick]),
.content .main-content-text p:has(a[onclick]) {
  text-align: center;
}
.content .main-content-text .table-container {
  width: 100%;
  overflow-x: auto;
}

table {
  margin-bottom: 20px;
  border-collapse: separate;
  border-spacing: 2px;
  width: 100%;
  table-layout: auto;
}
table[style] {
  height: auto !important;
  border: none !important;
  width: 100% !important;
}
table tr {
  margin-bottom: 2px !important;
}
table tr td {
  background: #0c2a45;
  padding: 10px 15px !important;
  margin: 2px !important;
  color: #fff;
}
table tr td[style^="border: 1px solid #ffffff;"] {
  border: none !important;
}
table tr td p {
  text-align: left;
  vertical-align: middle;
  margin: 0;
}
table[style^="border: 1px solid #28b0d7;"] {
  border: none !important;
}
table.data-table {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.image-section {
  margin: 20px auto;
  text-align: center;
}

.footer {
  background: rgba(22, 62, 99, 0.5);
  margin-top: 50px;
}
.footer .max-width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
}
@media (max-width: 800px) {
  .footer .max-width {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.footer-left {
  color: #fff;
  font-size: 10px;
  line-height: 14px;
}
@media (max-width: 800px) {
  .footer-left {
    text-align: center;
  }
}
.footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 800px) {
  .footer-right {
    margin-top: 20px;
  }
}
.footer-text {
  color: #fff;
  margin-left: 10px;
  font-size: 10px;
  text-transform: uppercase;
}