@charset "UTF-8";
@font-face {
  font-family: "montserrat";
  src: url("../assets/fonts/Montserrat.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "cuprumregular";
  src: url("../assets/fonts/cuprum-variablefont_wght-webfont.woff") format("woff2"), url("../assets/fonts/cuprum-variablefont_wght-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* Define other theme-related styles here */
* {
  margin: 0;
  padding: 0;
  transition: all 0.6s;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f5f5f5;
  font-family: "montserrat";
}

.nav {
  background-color: #f5f5f5;
  padding: 10px 0;
  margin-bottom: 20px;
  border-radius: 5px;
  margin: auto 2em;
  padding: 2em;
  position: relative;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.18);
  /* Define styles for the toggle switch */
}
.nav a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
}
.nav a:hover {
  color: #000;
  text-decoration: underline;
}
.nav a .title-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav a .title-wrap img {
  width: 45px;
  border-radius: 50%;
  margin: 0 1em;
}
.nav a .title-wrap h1 {
  font-family: "montserrat";
  font-size: 20px;
  text-align: center;
}
.nav .toggle-container {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
}
.nav .toggle-label {
  margin-right: 10px;
  font-family: "montserrat";
}
.nav #theme-toggle {
  visibility: hidden;
}
.nav .toggle-switch {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 22px;
  border: 1px solid black;
  background-color: #ccc;
  border-radius: 20px;
}
.nav .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 0;
  background-color: yellow;
  border-radius: 20px;
  transition: 0.5s;
}
.nav .slider:before {
  content: "🌑"; /* Default to Dark theme emoji */
  position: absolute;
  transform: translateX(5px);
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  transition: all 0.6s ease;
}
.nav input:checked + .slider {
  background-color: #fff;
}
.nav input:checked + .slider:before {
  content: "☀️"; /* Change to Light theme emoji when checked */
  left: calc(100% - 0px);
  transform: translate(-100%, -50%);
}
.nav input:focus + .slider {
  box-shadow: 0 0 1px #fff;
}

main {
  margin: 2em;
  display: flex;
}
main .vertical-nav {
  background-color: #f5f5f5;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.18);
  border-radius: 5px;
  margin-right: 2em;
  padding: 2em;
  min-width: 180px;
  height: calc(100vh - 0px);
  top: 0;
  position: sticky;
}
main .vertical-nav .nav-content {
  display: flex;
  align-items: center;
}
main .vertical-nav .nav-content img {
  width: 5em;
  height: 4.2em;
  position: relative;
  right: 1.5em;
}
main .vertical-nav .nav-content h2 {
  font-family: "montserrat";
  position: relative;
  right: 1.5em;
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
main .vertical-nav .nav-ul li.nav-list {
  list-style: none;
  color: #333;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0.6em 0;
}
main .vertical-nav .nav-ul li.nav-list a {
  text-decoration: none;
  color: #333;
}
main .vertical-nav .nav-ul li.nav-list a::-moz-selection {
  color: #007bff;
}
main .vertical-nav .nav-ul li.nav-list a::selection {
  color: #007bff;
}
main .vertical-nav .nav-ul li.nav-list a.active {
  color: #007bff;
}
main .vertical-nav .nav-ul li.nav-list .nav-hide {
  display: none;
}
main .vertical-nav .nav-ul li.nav-list .nav-show {
  display: block;
}
main .vertical-nav .nav-ul li.nav-list .sub-nav {
  margin-left: 1em;
}
main .vertical-nav .nav-ul li.nav-list .sub-nav li.nav-list {
  list-style: none;
  color: #333;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0.6em 0;
}
main .vertical-nav .nav-ul li.nav-list .sub-nav li.nav-list a.heading {
  font-family: "montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
main .vertical-nav .nav-ul li.nav-list .sub-nav li.nav-list a.active {
  color: #007bff;
}
main .vertical-nav .nav-ul li.heading {
  font-family: "montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
main .vertical-nav .nav-ul li.heading a.active {
  color: #007bff;
}
main .container-main {
  background-color: #f5f5f5;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.18);
  border-radius: 5px;
  width: 100%;
  overflow: hidden;
  contain: layout;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  text-rendering: optimizespeed !important;
  -webkit-font-smoothing: antialiased;
}
main .container-main .container-main__content {
  padding: 2em;
}
main .container-main .container-main__content .heading-primary {
  color: #333;
  font-family: "montserrat";
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
main .container-main .container-main__content .paragraph {
  color: #333;
  text-align: justify;
  font-family: Open Sans;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
main .container-main .container-main__content .paragraph ol,
main .container-main .container-main__content .paragraph li {
  margin-left: 1em;
}
main .container-main .container-main__content .adoption-d {
  margin-top: 1.3em;
}
main .container-main .container-main__content .article-container .heading-secondary {
  color: #333;
  text-align: justify;
  font-family: Open Sans;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0.5em;
}
main .container-main .container-main__content .article-container .heading-secondary .copy-link {
  background: none;
  border: 0;
  margin: 0 0.8em;
}
main .container-main .container-main__content .section-container {
  margin-left: 2em;
}

@media (max-width: 768px) {
  .vertical-nav {
    display: none;
  }
  .nav,
  .main {
    margin: 10px auto;
  }
  .section-container {
    margin-left: 1em !important;
    margin: 0.8em auto;
  }
  li {
    margin-left: 0.5em !important;
  }
  .container-main__content {
    padding: 1.3em !important;
  }
  .paragraph {
    margin-left: 0.4em !important;
  }
  .article-container {
    margin: 2.3em 0;
  }
}
#backToTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 1000;
  border: none;
  outline: none;
  background-color: #c07534;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
}
#backToTop:hover {
  background-color: #555;
}

.container-ammendment {
  margin: 2em !important;
}
@media (min-width: 48em) {
  .container-ammendment {
    margin: 2em;
  }
}
@media (min-width: 75em) {
  .container-ammendment {
    margin: 2em auto;
    max-width: 75em;
  }
}

.responsive-table {
  width: 100%;
  margin-bottom: 1.5em;
  border-spacing: 0;
}
@media (min-width: 48em) {
  .responsive-table {
    font-size: 0.9em;
  }
}
@media (min-width: 62em) {
  .responsive-table {
    font-size: 1em;
  }
}
.responsive-table thead {
  position: absolute;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
@media (min-width: 48em) {
  .responsive-table thead {
    position: relative;
    clip: auto;
    height: auto;
    width: auto;
    overflow: auto;
  }
}
.responsive-table thead th {
  background-color: #007bff;
  border: 1px solid #007bff;
  font-weight: normal;
  text-align: center;
  color: white;
}
.responsive-table thead th:first-of-type {
  text-align: left;
}
.responsive-table tbody,
.responsive-table tr,
.responsive-table th,
.responsive-table td {
  display: block;
  padding: 0;
  text-align: left;
  white-space: normal;
}
@media (min-width: 48em) {
  .responsive-table tr {
    display: table-row;
  }
}
.responsive-table th,
.responsive-table td {
  padding: 0.5em;
  vertical-align: middle;
}
@media (min-width: 30em) {
  .responsive-table th,
  .responsive-table td {
    padding: 0.75em 0.5em;
  }
}
@media (min-width: 48em) {
  .responsive-table th,
  .responsive-table td {
    display: table-cell;
    padding: 0.5em;
  }
}
@media (min-width: 62em) {
  .responsive-table th,
  .responsive-table td {
    padding: 0.75em 0.5em;
  }
}
@media (min-width: 75em) {
  .responsive-table th,
  .responsive-table td {
    padding: 0.75em;
  }
}
.responsive-table caption {
  margin-bottom: 1em;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 48em) {
  .responsive-table caption {
    font-size: 1.5em;
  }
}
.responsive-table tfoot {
  font-size: 0.8em;
  font-style: italic;
}
@media (min-width: 62em) {
  .responsive-table tfoot {
    font-size: 0.9em;
  }
}
@media (min-width: 48em) {
  .responsive-table tbody {
    display: table-row-group;
  }
}
.responsive-table tbody tr {
  margin-bottom: 1em;
}
@media (min-width: 48em) {
  .responsive-table tbody tr {
    display: table-row;
    border-width: 1px;
  }
}
.responsive-table tbody tr:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 48em) {
  .responsive-table tbody tr:nth-of-type(even) {
    background-color: rgba(0, 0, 0, 0.12);
  }
}
.responsive-table tbody th[scope=row] {
  background-color: #007bff;
  color: white;
}
@media (min-width: 30em) {
  .responsive-table tbody th[scope=row] {
    border-left: 1px solid #007bff;
    border-bottom: 1px solid #007bff;
  }
}
@media (min-width: 48em) {
  .responsive-table tbody th[scope=row] {
    background-color: transparent;
    color: rgb(0, 0, 1);
    text-align: left;
  }
}
.responsive-table tbody td {
  text-align: right;
}
@media (min-width: 48em) {
  .responsive-table tbody td {
    border-left: 1px solid #007bff;
    border-bottom: 1px solid #007bff;
    text-align: center;
  }
}
@media (min-width: 48em) {
  .responsive-table tbody td:last-of-type {
    border-right: 1px solid #007bff;
  }
}
.responsive-table tbody td[data-type=currency] {
  text-align: right;
}
.responsive-table tbody td[data-title]:before {
  content: attr(data-title);
  float: left;
  font-size: 0.8em;
  color: rgba(0, 0, 0, 0.54);
}
@media (min-width: 30em) {
  .responsive-table tbody td[data-title]:before {
    font-size: 0.9em;
  }
}
@media (min-width: 48em) {
  .responsive-table tbody td[data-title]:before {
    content: none;
  }
}/*# sourceMappingURL=style.css.map */