*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
h1, h2, h3, h4,
p, ol, ul, li,
dl, dd, blockquote,
figure, figcaption,
address, fieldset,
legend, input, textarea,
button, select, optgroup {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
}
ol, ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  max-inline-size: 100%;
  height: auto;
  vertical-align: middle;
  block-size: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
input,
textarea,
select,
button {
  border: none;
  background: none;
  border-radius: 0;
  box-shadow: none;
  text-transform: inherit;
  text-shadow: inherit;
  line-height: inherit;
  -webkit-appearance: none;
  width: 100%;
}
input {
  text-overflow: ellipsis;
}
textarea {
  overflow: auto;
  resize: none;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
::-webkit-contacts-auto-fill-button,
::-webkit-credentials-auto-fill-button {
  visibility: hidden;
  position: absolute;
  right: 0;
}
:-webkit-autofill {
  box-shadow: inset 0 0 0 1000px var(--grey);
}
button,
[type="button"],
[type="submit"],
[type="reset"],
label[for],
select,
summary {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}
::placeholder {
  opacity: 1;
}
:focus:not(:focus-visible),
:focus-visible {
  outline: none;
}
iframe {
  all: unset;
  display: block;
  width: 100%;
  height: 100%;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:root {
  --bgcol1: #141420;
  --bgcol2: #0c0c13;
  --col1: #4f4f58;
  --maincol1: #fff614;
  --maincol2: #4EB529;
  --maincol3: #1F6B15;
  --seccol1: #eee;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  line-height: 1.5;
  font-size: 16px;
}
.hidden {
  display: none;
}
.wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 1280px;
  max-width: 100%;
}
a:hover,
label:hover,
button:hover {
  opacity: .8;
}
body {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100dvh;
  background-color: var(--bgcol1);
  color: #fff;
  font-family: Tahoma, sans-serif;
  overflow-y: auto;
  overflow-x: hidden;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  background-color: var(--bgcol1);
  border-bottom: 1px solid var(--seccol1);
  z-index: 1;
}
header .wrapper {
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
.logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 290px;
  max-width: 100%;
  height: 60px;
  margin: 0 15px;
}
.logo svg:first-child {
  width: 290px;
  max-width: 100%;
  height: 40px;
}
.logo svg:last-child {
  display: none;
}

.btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 290px;
  max-width: 100%;
  height: 40px;
  margin: 0 15px;
  border-radius: 100px;
  background-color: var(--maincol1);
  color: var(--col1);
  text-transform: uppercase;
  font-size: 16px;
  text-decoration: none;
}
label[for="nav"] {
  display: none;
}
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 30px;
  margin-top: 60px;
  background-color: var(--bgcol2);
  border-bottom: 1px solid var(--seccol1);
}
nav a,
nav span {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: calc(100%/6);
  height: 100%;
  padding: 0 5px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}
nav a:not(:last-child),
nav span:not(:last-child) {
  border-right: 1px solid var(--seccol1);
}
nav .active {
  background-color: var(--col1);
}
main {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex: 1 0 auto;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
}
article {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  width: 930px;
  max-width: 100%;
  margin: 15px;
  font-size: 14px;
  line-height: 1.4;
  gap: 10px;
}
article > * {
  width: 100%;
  max-width: 100%;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--seccol1);
  gap: 5px;
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs a:after {
  content: ' /';
}
.breadcrumbs span {
  color: var(--seccol1);
  font-style: italic;
}
article h1,
article h2,
article h3,
article h4,
article h5,
article h6 {
  font-weight: bold;
  scroll-margin-top: 75px;
  line-height: 1;
}
article h1 {
  font-size: 36px;
}
article h2 {
  font-size: 32px;
}
article h3 {
  font-size: 28px;
}
article h4 {
  font-size: 24px;
}
article h5 {
  font-size: 20px;
}
article h6 {
  font-size: 18px;
}
article p {
  color: var(--seccol1);
}
article a {
  color: var(--maincol1);
  text-decoration: underline;
}

article blockquote {
  padding: 15px;
  background-color: var(--bgcol2);
  border: 1px solid var(--seccol1);
  font-style: italic;
  text-align: center;
}
article img {
  border: 1px solid var(--seccol1);
}
article ul,
article ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
article ol {
  counter-reset: point;
}
article ul li,
article ol li {
  position: relative;
  width: 100%;
  padding-left: 30px;
}
article ul li::before,
article ol li::before {
  position: absolute;
  left: 0;

}
article ul li::before {
  content: '';
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--maincol1);
}
article ol li::before {
  counter-increment: point 1;
  content: counter(point) ". ";
  top: 1px;
  width: auto;
  height: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
  color: var(--maincol1);
}
article table {
  border-collapse: collapse;
  table-layout: fixed;
}
article table td {
  padding: 10px;
  border: 1px solid var(--seccol1);
}
.faq {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.faq-item {
  width: 100%;
  border: 1px solid var(--seccol1);
}
.faq-q {
  position: relative;
  list-style: none;
  cursor: pointer;
  width: 100%;
  padding: 10px 50px 10px 15px;
  background-color: var(--bgcol2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}
.faq-q::-webkit-details-marker {
  display: none;
}
.faq-q::marker {
  content: '';
}
.faq-q:before,
.faq-q:after {
  content: '';
  width: 20px;
  height: 2px;
  right: 15px;
  top: 50%;
  margin-top: -1px;
  position: absolute;
  background-color: var(--maincol1);
}
.faq-q:after {
  transform: rotate(90deg);
}
.faq-item[open] .faq-q:after {
  transform: rotate(0deg);
}
.faq-a {
  width: 100%;
  padding: 10px 15px;
  font-style: italic;
}
.meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  padding: 10px 15px;
  background-color: var(--bgcol2);
}
.meta>div {
  width: calc((100% - 30px)/2);
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.read-views {
  justify-content: flex-end;
}
.meta>div>div {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.read-views>div {
  justify-content: flex-end;
}
.meta>div>div>span:first-child {
  color: var(--seccol1);
  font-style: italic;
}
.meta>div>div>span:last-child,
.meta>div>div>time {
  font-weight: bold;
}
.author {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  padding: 15px;
  background-color: var(--bgcol2);
  border: 1px solid var(--seccol1);

}
.author>img,
.comment>img  {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.author-content,
.comment-content {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  width: calc(100% - 110px);
  max-width: 100%;
  gap: 10px;
}
.author-name,
.comment-name {
  font-weight: bold;
}
.author-position {
  padding-left: 10px;
  border-left: 1px solid var(--seccol1);
}
.author-content>div,
.comment-body {
  width: 100%;
  padding-top: 10px;
  border-top: 1px solid var(--seccol1);
  font-style: italic;
}
.author-content .btn {
  margin: 0;
}
.comments {
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background-color: var(--bgcol2);
}
.comment {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

aside {
  position: sticky;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  top: 75px;
  width: 290px;
  max-width: 100%;
  max-height: calc(100vh - 75px - 65px);
  margin: 15px;
  padding: 15px;
  background-color: var(--bgcol2);
  border: 1px solid var(--seccol1);
  gap: 10px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
aside a {
  width: 100%;
  font-size: 14px;
}
aside a.active {
  color: var(--maincol1);
}
label[for="aside"] {
  position: fixed;
  width: 40px;
  height: 40px;
  z-index: 1;
  display: none;
}
label[for="aside"]:before {
  content: '';
  position: fixed;
  top: 60px;
  left: 0;
  background-color: rgba(0,0,0,.8);
  width: 100%;
  height: 100%;
  z-index: -1;
  display: none;
}
#aside:checked + label[for="aside"]:before {
  display: flex;
}
label[for="aside"] span {
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--bgcol2);
  border: 1px solid var(--seccol1);
}
label[for="aside"] span::before,
label[for="aside"] span::after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: 50%;
  width: 16px;
  height: 16px;
  border-left: 2px solid var(--seccol1);
  border-top: 2px solid var(--seccol1);
  transform: rotate(-45deg);
}
#aside:checked + label[for="aside"] span::before,
#aside:checked + label[for="aside"] span::after {
  transform: rotate(135deg);
}
#aside:checked + label[for="aside"] span::before {
  margin-right: -2px;
}
#aside:checked + label[for="aside"] span::after {
  margin-right: -10px;
}
label[for="aside"] span::before {
  margin-right: -8px;
}
label[for="aside"] span::after {
  margin-right: -16px;
}

footer {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  width: 100%;
  background-color: var(--bgcol2);
  border-top: 1px solid var(--seccol1);
}
footer .wrapper {
  align-content: flex-start;
  align-items: flex-start;
}
.footer-left,
.footer-center,
.footer-right {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  max-width: 100%;
  margin: 15px;
}
.footer-left,
.footer-right {
  width: 290px;
}
.footer-center {
  width: 610px;
  gap: 15px;
  padding: 15px 0;
  border-top: 1px solid var(--seccol1);
  border-bottom: 1px solid var(--seccol1);
}
.footer-right {
  gap: 10px;
}
footer .logo {
  margin: 0;
  height: 40px;
}
footer .logo svg:last-child {
  display: flex;
}
.footer-text {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 10px 0;
  gap: 10px;
}
.footer-text p {
  width: 100%;
  font-size: 12px;
  line-height: 1.2;
  color: var(--seccol1);
}
.copyright {
  width: 100%;
  padding-top: 10px;
  border-top: 1px solid var(--seccol1);
  font-size: 12px;
  color: var(--seccol1);
}
.footer-center a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: calc((100% - 30px)/3);
  max-width: 100%;
}
.footer-center a svg {
  width: 100px;
  fill: var(--seccol1);
}
.footer-right a,
.footer-right span {
  width: 100%;
  font-size: 14px;
  text-align: right;
}
.footer-right .active {
  color: var(--maincol2);
}
body:has(#cookie-notification[style="display: flex;"]) footer {
  margin-bottom: 60px;
}
a[href="#top"] {
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 9px;
  right: calc((100% - 1250px)/2);
  background-color: var(--bgcol2);
  border: 1px solid var(--seccol1);
  z-index: 1;
}
body:has(#cookie-notification[style="display: flex;"]) a[href="#top"] {
  bottom: 69px;
}
a[href="#top"]::before,
a[href="#top"]::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--seccol1);
  border-right: 2px solid var(--seccol1);
  transform: rotate(-45deg);
}
a[href="#top"]::before {
  margin-top: -8px;
}
a[href="#top"]::after {
}

#cookie-notification {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  height: 60px;
  background-color: var(--bgcol1);
  border-top: 1px solid var(--seccol1);
}
#cookie-notification .wrapper {
  align-content: center;
  align-items: center;
}
#cookie-notification p {
  width: 930px;
  max-width: 100%;
  margin: 0 15px;
  font-size: 14px;
  color: var(--seccol1);
}
@media screen and (min-width:1025px) and (max-width:1310px) {
  label[for="aside"] {
    display: flex;
    top: 105px;
    right: 15px;
  }
  aside {
    position: fixed;
    right: 55px;
    top: 90px;
    display: none;
  }
  body:has(#aside:checked) aside {
    display: flex;
    z-index: 2;
  }


  #cookie-notification p {
    width: calc(100% - 350px);
  }
  .footer-center {
    width: calc(100% - 670px);
  }

  a[href="#top"] {
    right: 15px;
    bottom: 15px;
  }
  body:has(#cookie-notification[style="display: flex;"]) a[href="#top"] {
    bottom: 75px;
  }
}

@media screen and (min-width:769px) and (max-width:1024px) {
  nav a {
    font-size: 12px;
  }
  article {
    width: calc(100% - 30px);
    max-width: 930px;
    margin: 15px 0;
  }
  label[for="aside"] {
    display: flex;
    top: 105px;
    right: 15px;
  }
  aside {
    position: fixed;
    right: 55px;
    top: 90px;
    display: none;
  }
  body:has(#aside:checked) aside {
    display: flex;
    z-index: 2;
  }
  .footer-left,
  .footer-right {
    width: calc((100% - 60px)/2);
  }
  .footer-center {
    width: 100%;
  }
  .footer-right {
    order: 2;
  }
  .footer-center {
    order: 3;
  }
  .footer-left {
    order: 1;
  }
  #cookie-notification p {
    width: calc(100% - 350px);
  }
  a[href="#top"] {
    right: 15px;
    bottom: 15px;
  }
  body:has(#cookie-notification[style="display: flex;"]) a[href="#top"] {
    bottom: 75px;
  }
}

@media screen and (max-width:768px) {
  .logo {
    width: 60px;
    margin: 0;
  }
  .logo svg:first-child {
    display: none;
  }
  .logo svg:last-child {
    display: flex;
    width: 40px;
    max-width: 100%;
    height: 40px;
  }
  header .btn {
    width: calc(100% - 150px);
    max-width: 290px;
  }
  label[for="nav"] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  label[for="nav"] span {
    width: 30px;
    height: 2px;
    background-color: #fff;
    margin: 5px 0;
  }
  #nav:checked + label[for="nav"] span:last-child {
    display: none;
  }
  #nav:checked + label[for="nav"] span:not(:last-child) {
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 50%;
    margin-left: -15px;
  }
  #nav:checked + label[for="nav"] span:first-child {
    transform: rotate(45deg);
  }
  #nav:checked + label[for="nav"] span:nth-child(2) {
    transform: rotate(-45deg);
  }
  nav {
    position: fixed;
    display: none;
    align-content: flex-start;
    align-items: flex-start;
    top: 60px;
    right: 0;
    margin-top: 0;
    width: 320px;
    max-width: 100%;
    height: calc(100% - 60px);
    z-index: 2;
    border-left: 1px solid var(--seccol1);
  }
  body:has(#nav:checked) nav {
    display: flex;
  }
  nav a {
    width: 100%;
    height: 30px;
    justify-content: flex-end;
    text-align: right;
    padding: 0 15px;
    border-bottom: 1px solid var(--seccol1);
  }
  nav a:not(:last-child) {
    border-right: none;
  }
  main {
    margin-top: 60px;
  }
  article {
    width: calc(100% - 30px);
    margin: 15px 0;
  }
  article h1,
  article h2,
  article h3,
  article h4,
  article h5,
  article h6 {
    text-align: center;
  }
  article h1 {
    font-size: 30px;
  }
  article h2 {
    font-size: 26px;
  }
  article h3 {
    font-size: 22px;
  }
  article h4 {
    font-size: 18px;
  }
  article h5 {
    font-size: 16px;
  }
  article h6 {
    font-size: 14px;
  }
  article blockquote {
    padding: 10px;
  }
  article table td {
    padding: 5px;
  }
  .faq-q {
    padding: 10px 40px 10px 10px;
  }
  .faq-q:before,
  .faq-q:after {
    right: 10px;
  }
  .faq-a {
    padding: 10px;
  }
  .meta {
    padding: 10px;
    gap: 10px;
  }
  .meta>div {
    gap: 5px;
  }
  .author,
  .comment {
    position: relative;
  }
  .author>img,
  .comment>img {
    position: absolute;
    width: 60px;
    height: 60px;
  }
  .author>img {
    top: 15px;
    left: 15px;
  }
  .comment>img {
    top: 0;
    left: 0;
  }
  .author-content,
  .comment-content {
    width: 100%;
    justify-content: flex-end;
  }
  .author-name,
  .author-position,
  .comment-name {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    width: calc(100% - 75px);
  }
  .author-name,
  .author-position {
    height: 25px;
  }
  .author-position {
    padding-left: 0;
    border-left: none;
  }
  .comment-name {
    height: 60px;
  }
  .author-content>div,
  .comment-body {
    font-size: 12px;
  }
  .author-content .btn {
    width: 170px;
  }

  label[for="aside"] {
    display: flex;
    top: 60px;
    right: 0;
  }
  label[for="aside"] span {
    border-top: none;
    border-right: none;
  }
  aside {
    position: fixed;
    right: 0;
    top: 100px;
    display: none;
  }
  body:has(#aside:checked) aside {
    display: flex;
    z-index: 2;
  }
  .footer-left,
  .footer-right {
    width: calc((100% - 60px)/2);
  }
  .footer-center {
    width: 100%;
  }
  .footer-right {
    order: 2;
  }
  .footer-center {
    order: 3;
  }
  .footer-left {
    order: 1;
  }
  footer .logo {
    width: 290px;
  }
  footer .logo svg:last-child {
    width: 290px;
  }
  #cookie-notification p {
    width: calc(100% - 195px);
    margin: 0 0 0 15px;
    font-size: 12px;
    line-height: 1.2;
  }
  #cookie-notification .btn {
    width: 150px;
  }
  a[href="#top"] {
    right: 0;
    bottom: 0;
    border-right: none;
    border-bottom: none;
  }
  body:has(#cookie-notification[style="display: flex;"]) a[href="#top"] {
    bottom: 60px;
  }
}

@media screen and (max-width:639px) {
  .footer-left,
  .footer-center,
  .footer-right {
    width: 100%;
  }
  .footer-right {
    order: 1;
  }
  .footer-center {
    order: 2;
  }
  .footer-left {
    order: 3;
  }
  .footer-right a {
    text-align: center;
  }
  .meta>div {
    width: 100%;
  }
}
