@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400&family=Mukta:wght@300;900&family=Rubik+Mono+One&family=Signika+Negative:wght@500&family=Amatic+SC:wght@700&family=Londrina+Solid:wght@100;300;400&display=swap');


:root {
  --mid: LightSeaGreen;
  --dark: #111111;
  /* --dark: black; */
  --lo: #42352f;
  /* --hi: #8f8f8f; */
  /* --hi: GhostWhite; */
  --hi: white;

  --gradient: linear-gradient(214deg,
      #22c1c3,
      #64d35a,
      #a9ed6f,
      #f9f871,
      #22c1c3,
      #a9ed6f);
}

/* height of sticky header */
html {
  scroll-padding-top: 70px;
}

body {
  font-family: 'Mukta';
  font-weight: normal;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: left 10px top 80px;
  background-image:
    url("../imgs/dragon.svg")
}

main {

  font-weight: 300;
  font-size: 20px;
  color: var(--dark);
}

main h1,
h2,
h3,
h4,
h5 {
  /* font-family: Amatic SC; */
  font-family: 'Londrina Solid', cursive;
  /* font-family: Signika Negative; */
  color: var(--mid);
  font-stretch: extra-expanded;

}


h3 {
  font-weight: 300;

}

.nav-accessible {

  display: none;

}

.skipto-link {
  display: block;
  position: absolute;
  z-index: 100000;
}

.content {
  padding-top: 50px;
  padding-left: 320px;
  line-height: 1.3;
}

main li {
  line-height: 1.6;
}

table {
  width: 100%;
}

table,
th,
td {
  border: 1px solid black;
  border-collapse: collapse;
  padding: 2px;
  text-align: center;
}

a {
  color: #42352f;
}

a:hover {
  color: #42352f;
  text-decoration-style: double;
}

menu a {
  color: rgb(80, 80, 80);
}

menu {
  margin-left: 0;
  padding-left: 0;
  line-height: 1.2;
  padding-bottom: 1.5em;
}

menu a:hover {
  color: rgb(80, 80, 80);
  text-decoration-style: double;
}

menu li {
  list-style: none;
  padding-left: 1em;
  border-left: 5px solid rgba(80, 80, 80, 0.7);
}

.seven-prinicples {
  width: 90%;
  border: 2px dotted var(--lo);
  padding: 1em;
  counter-reset: svn-ps;
}

.svn-principles {
  margin-bottom: 0px;
  padding-bottom: 0px;
  font-family: Amatic SC;
  font-size: 30px;
}

.svn-principles::before {
  counter-increment: svn-ps;
  content: counter(svn-ps);
  padding-right: 0.4em;
  font-family: Amatic SC;
  font-size: 48px;

}

.svn-principles-p {
  margin: 0;
  padding: 0;
}

footer {
  border-top: 1px solid var(-lo);
  font-size: 12px;
  position: absolute;
  padding-top: 50px;
  padding-left: 320px;
  line-height: 1.3;
}

footer .logo {
  visibility: hidden;
}

/* --------------------------------------------  header ----------------------------------------- */

.print-version {
  visibility: hidden;
}

.navbar {
  z-index: 1;
  height: 75px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--hi);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.1);
}

.logo {
  position: absolute;
  max-width: 150px;
  left: 10px;
  top: 0%;
}

.brand {
  font-family: 'Fredoka';
  font-weight: 900;
  font-size: 60px;
  position: relative;
  margin: auto;
  padding-left: 10px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  background: var(--gradient);
  background-size: 300%;
  animation: bg-move 24s infinite alternate;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes bg-move {
  0% {
    background-position: left;
  }

  100% {
    background-position: right;
  }
}

.brand h1 {
  padding-bottom: 20px;
}

.toggler {
  position: absolute;
  right: 10px;
  top: 25%;
  background-color: var(--hi);
  font-size: 30px;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--mid);
}

.toggler .fa-bars {
  display: none;
}

.toggler .fa-times {
  display: none;
}

.sidebar.active .toggler .fa-bars {
  display: none;
}

.sidebar.active .toggler .fa-times {
  display: block;
}



/* ------------------------------------------- document proper -------------------------------------- */

.heading-section {
  left: 0;
  right: 0;
  padding-bottom: 1em;
  border-bottom: 2px dotted var(--lo);
  overflow: hidden;

}

.heading-section h1 {
  text-transform: uppercase;
  font-size: 40px;
}


.ratification-info {
  position: relative;
  left: -10%;
  text-align: right;
  color: var(--lo);
  font-size: 14px;
}

.ratification-dates {
  color: var(--lo);
  list-style-type: none;
}


/* --------------------------––––––------------- *sidebar* ------------------------------------------ */
.sidebar {

  padding-top: 70px;
  text-align: right;
  background-color: transparent;
  -moz-box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar ul {
  list-style-type: none;
  padding-left: 0;
}

.sidebar ul:last-child {
  margin-bottom: 100px;
}

.sidebar li {
  margin-left: 0px;
  padding-left: 0;
}

.sidebar a {
  padding-right: 30px;
  padding-top: 4px;
  padding-left: 10px;
  padding-bottom: 3px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-top: 1px solid rgba(204, 0, 0, 0.1);
  background-color: #64d35a11;
  border-bottom: 1px solid rgba(204, 0, 0, 0.1);
  display: block;
}

.nav-item a {
  color: black;
  font-weight: normal;
  background: transparent;
  border: none;
}

.sidebar-active {
  /* background-color: #eb7a34;
  border-bottom: 10px solid rgba(0,0,0,0.5);
  border-top: 10px solid rgba(0,0,0,0.5); */
  -moz-box-shadow: inset 1px 1px 5px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 1px 1px 5px 0px rgba(0, 0, 0, 0.5);
  box-shadow: inset 1px 1px 5px 0px rgba(0, 0, 0, 0.5);
  text-shadow: 1px 1px 5px rgb(231, 116, 9);

}

.nav-item a:hover {
  color: black;
  background-color: var(--mid);
}

.content-section>li {
  padding-bottom: 1em;

}

.content-section ul {
  padding-top: 4px;
  padding-bottom: 4px;
  list-style-type: disc;
}

.content-section {
  list-style-type: none;
  padding-left: 0;
}

.block-box {
  padding: 20px;
  border: 1px dotted black;
  border-radius: 2px;
  background-color: rgba(1, 1, 1, 0.4);
}

.block-box li {
  list-style-type: none;
  padding-top: 0.33em;
  padding-bottom: 0.33em;
  padding-left: 0;
}

.bottom-nav {
  padding: 1em;
  position: fixed;
  right: 0px;
  bottom: 0;
  width: auto;
  background-color: #eb7a34;
  color: white;
  border: 1px solid white;
  text-align: center;
  border-radius: 2px;
  line-height: 0px;
  -moz-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.bottom-nav a {
  color: white;
}

.bottom-nav a:hover {
  text-decoration: none;
  color: #2d5f6c;
}

.list-header {
  padding-bottom: 1em;
  font-weight: bold;
}

.address {
  display: block;
  padding: 1em;
  font-weight: bold;
}

.quotation {
  display: block;
  font-style: italic;
  padding: 1em;
}

.numbering-overide {

  list-style-type: decimal;
  list-style-position: inside;
}

.repair-priority {
  list-style: none;
}

/* ---------------------------------------------------- * media-queries * -------------------------------------------- */

@media screen and (max-width: 1000px) {
  .content {
    padding-left: 10px;
  }

  .sidebar {
    background-color: var(--hi);
    transform: translateX(-100%);
    /* transition: transform 0s; */
  }

  .brand {
    font-size: 40px;
    margin: 1%;
  }

  .toggler .fa-bars {
    display: block;
  }
}

@media screen and (max-width: 900px) {

  .brand {
    font-size: 20px;
    margin: 3%;
  }

}

@media only screen and (max-width: 414px) {
  body {
    /* background: var(--dark); */
    /* background-image: url("../imgs/dragon_rotated.svg"); */
    background-position: left 10px top 100px;
    background-blend-mode: screen;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  .brand {
    position: relative;
    bottom: 40%;
  }

  .toggler {
    right: 5px;
  }
}