@font-face {
  font-family: "Roboto";
  src: url(/src/fonts/roboto-regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url(/src/fonts/roboto-bold.woff2) format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

html {
  font-family: "Roboto", Arial, sans-serif;
  color: #151515;
}

body {
  background: #f6fff6;
  margin: 0;
  padding: 0;
  font-size: 1.2em;
}

.navbar {
  background-color: #023c79;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar ul li a {
  color: #fff;
}

#logo img {
  width: 189px;
  padding: 0;
}

.desktop-menu {
  display: none;
  list-style: none;
}

.desktop-menu li a {
  color: #313131;
  text-decoration: none;
  padding: 1rem;
}

.mobile-menu {
  padding-bottom: 5px;
  background-color: #023c79;
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  z-index: 999;
}

.mobile-menu ul {
  padding: 10px 0 0 0;
  margin: 0;
  display: flex;
  justify-content: space-around;
  width: 100%;
  list-style: none;
}

.mobile-menu ul li a {
  font-size: 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.mobile-menu img {
  padding-bottom: 9px;
  width: 24px;
  height: 24px;
}

#content {
  max-width: 1130px;
  margin: 0 auto;
  padding: 30px;
}

body a {
  color: #1cb95f;
  text-decoration: none;
  transition: color 0.3s ease;
}

body a:hover {
  color: #2ec76f;
}

h1,
h2,
h4 {
  font-weight: bold;
  color: #151515;
  text-align: center;
}

h1 {
  margin: 20px 0;
  text-decoration: underline;
  text-decoration-color: #fff4c5;
}

h3 img {
  width: 31px;
  height: auto;
  padding-right: 12px;
}

h3 {
  color: #282828;
  text-decoration: underline;
}

#content .bodyimg {
  margin: 0 auto;
  display: flex;
  width: 100%;
}

#content li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

#content li.active {
  text-decoration: underline;
}

li h2,
li h4 {
  margin: 10px 0;
  padding: 0;
  font-weight: bold;
}

li a {
  color: #023c79;
  text-decoration: none;
}

li a:hover {
  text-decoration: underline;
}

ul ul,
ol ul {
  margin-left: 20px;
  list-style: none;
}

ul li {
  list-style: none;
}

ol {
  counter-reset: my-counter;
  list-style: none;
}

#content ol li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  position: absolute;
  left: -6px;
  top: 2px;
  background-color: #4f5aaa;
  color: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
}

#content ul li:before {
  content: "";
  position: absolute;
  left: -6px;
  top: 2px;
  width: 14px;
  height: 14px;
  background-color: #4f5aaa;
  border-radius: 50%;
}

#content span.bq {
  display: flex;
  justify-content: center;
  background-color: #04284e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 10px 0;
}

.footer-flag-container {
  height: 24px;
  width: 24px;
  margin: auto;
  display: block;
  margin-bottom: 80px;
}

@media (min-width: 350px) {
  .mobile-menu ul li a {
    font-size: 10px;
  }
}

@media (min-width: 488px) {
  #content .bodyimg img {
    display: block;
    float: right;
    max-width: none;
  }

  .mobile-menu ul li a {
    font-size: 12px;
  }
}

@media (min-width: 600px) {
  #content .bodyimg img {
    display: block;
    float: right;
    max-width: none;
  }
  .footer-flag-container {
    margin-bottom: auto;
  }
}

@media (min-width: 800px) {
  #main-content .bodyimg {
    display: block;
    float: right;
    margin-left: 25px;
  }
  #scrollToTopBtn {
    display: none !important;
  }
  #content .bodyimg {
    width: auto;
    border-radius: 10px;
  }
}

@media (min-width: 810px) {
  .desktop-menu {
    margin-right: 48px;
  }
}

@media (min-width: 1110px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
  }

  .desktop-menu {
    margin-right: 14px;
    display: flex;
    justify-content: space-around;
  }

  .mobile-menu {
    display: none;
  }
  #logo img {
    padding: 20px;
  }
}

@media (min-width: 1200px) {
  .navbar {
    justify-content: space-around;
  }
}
