:root {
  --normal: #BABAC5;
  --dlight: #24242D;
  --dark: #212129;
  --white: #D2D2DA;
  --bg: #141418;
  --cbg: #1B1B20;
  --gold: #D8A95A;
}


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, ul, li,
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%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
hr {
  border-width: 0 0 1px 0;
  border-color: var(--dlight);
  opacity:0.3;
  width:100%;
}
small {
  font-size:0.8em;
}
strong {
  font-weight: 600;
}
body {
  font-family: Poppins, sans-serif;
  color:var(--normal);
  background:var(--bg);
  line-height:1.55; 
  font-size:14px;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a { color:var(--white); text-decoration: none; }
a.icon::after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.3em;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23D8A95A" viewBox="0 0 24 24"><path d="M10.59 13.41a1 1 0 0 0 1.41 0l5.59-5.59a1 1 0 0 0-1.41-1.41l-5.59 5.59a1 1 0 0 0 0 1.41zm10.38-8.99a5.5 5.5 0 0 0-7.78 0L10.5 7.11a5.5 5.5 0 0 0 0 7.78 1 1 0 1 0 1.41-1.41 3.5 3.5 0 0 1 0-4.95l2.69-2.69a3.5 3.5 0 1 1 4.95 4.95l-1.75 1.75a1 1 0 1 0 1.41 1.41l1.75-1.75a5.5 5.5 0 0 0 0-7.78zM3.03 10.59a5.5 5.5 0 0 0 0 7.78 5.5 5.5 0 0 0 7.78 0l2.69-2.69a5.5 5.5 0 0 0 0-7.78 1 1 0 1 0-1.41 1.41 3.5 3.5 0 0 1 0 4.95l-2.69 2.69a3.5 3.5 0 1 1-4.95-4.95l1.75-1.75a1 1 0 1 0-1.41-1.41l-1.75 1.75z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  transform: scale(0.7) translate(-10px, -10px);
}
a:hover { color:var(--gold);}

h1 { font-size:40px; font-weight:600; margin-bottom:10px; }
h2 { font-size:32px; font-weight:600; margin-bottom:10px; }
h3 { font-size:28px; font-weight:600; margin-bottom:10px; }
h4 { font-size:21px; font-weight:600; margin-bottom:10px; }
h5 { font-size:18px; font-weight:600; margin-bottom:10px; }
h6 { font-size:14px; font-weight:600; margin-bottom:10px; }
p { margin-bottom:10px; }



.maintenance-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--gold);
  color: #000;
  text-align: center;
  padding: 5px 20px;
  font-weight: 400;
  font-size:14px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 9999;
}


.wrapper {
  margin-top: 30px;
  padding:30px;
}

.site-container {
  max-width: 100%;
  width:1440px;
  margin:0 auto;
  background: var(--cbg);
  position:relative;
  display:flex;
  flex-wrap:wrap;
  justify-content: flex-end;
}

.site-container.active .site-sidebar { width: 240px; }
.site-container:not(.active) .site-navigation { opacity:0; pointer-events:none; transform:translateX(10px); }
.site-container.active .site-navigation { }
.site-container.active .site-body {  }

.site-sidebar {
  width:80px;
  transition: all 300ms ease;
  background: var(--dark);
  position: absolute;
  top:0;
  left:0;
  z-index:99;
  height: 100%;
}
.site-menu {
  position:sticky;
  top:30px;
}


.site-body {
  min-height: 50vh;
  width: calc(100% - 120px);
  transition: all 300ms ease;
  padding-top: 20px;
  padding-left:20px;
  padding-right:20px;
  padding-bottom: 20px;
}

.site-menu .site-burger-wrap {
  background:var(--dlight);
}

.site-menu .site-burger {
  display:flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  max-width: 80px;
}

.site-menu .burger {
  width: 20px;
  height: 14px;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-menu .burger span {
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 0px;
  transition: 0.4s ease;
}

.site-menu .burger span:nth-child(1) {
  top: 0;
}

.site-menu .burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.site-menu .burger span:nth-child(3) {
  bottom: 0;
}

.site-menu .burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}

.site-menu .burger.active span:nth-child(2) {
  opacity: 0;
}

.site-menu .burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: auto;
  top: 50%;
}

.site-navigation {
  transition: all 300ms ease;
  padding:100px 26px 26px;
}

.site-navigation nav {
  font-size:15px;
}
.site-navigation nav > ul {
  list-style: none;
  margin:0;
  padding:0;
}

.site-navigation nav > ul > li {
  border-bottom:1px solid var(--dlight);
}
.site-navigation nav > ul > li.active a {
  color:var(--gold);
}


.site-navigation a {
  color:var(--white);
  text-decoration: none;
  transition: all 300ms ease;
  text-transform: uppercase;
  font-weight:500;
  display:block;
  padding:10px 5px;
}
.site-navigation a:hover {
  color:var(--gold);
}


.site-heading {
  position:relative;
  margin-bottom:30px;
}

.site-heading img {
  display:block;
  width:100%;
}


.site-intro {
  position: absolute;
  top:50%;
  left:5%;
  width:45%;
  transform:translateY(-50%);
  color:var(--white);
}

.site-intro--a {
  font-weight: 600;
  font-size:40px;
  margin-bottom:10px;
}

.site-intro--a span {
  color:var(--gold);
}
.site-intro--b {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.site-intro--c {

}

.site-intro--c .social-media a {
  color: var(--white);
  text-decoration: none;
  font-size:24px;
}
.site-intro--c .social-media a:hover {
  color: var(--gold);
}

.site-heading-extras {
  display:flex;
  justify-content: space-evenly;
  position: absolute;
  bottom:0;
  left:0;
  width:100%;
  padding:1.2%;
  color:var(--white);
  gap:50px;
}

.site-heading-extra {

}
.site-heading-extra span {
  color:var(--gold);
  font-weight: 600;
}


.site-content {
  /*height:200vh;*/
  display:flex;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 2rem;
}


.site-content--row {
  width:100%;
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
}

.site-content--core {
  color:var(--white);
  width:calc(100% - 380px);
}


.o--section {
  margin-bottom:40px;
}
.o--section > h3 {
  background:var(--dark);
  color:var(--white);
  font-weight: 600;
  text-transform: uppercase;
  padding:10px;
  font-size:20px;
  border-radius:5px;
  position:relative;
  display:flex;
  align-items: center;
}
.o--section > h3::before {
  content:"";
  display: block;
  background:var(--gold);
  border-radius: 5px;
  width:30px;
  height:30px;
  margin-right: 20px;
}

.o--section-item {
  margin-bottom: 20px;
  padding: 10px;
}

.o--section-item:not(:last-child) {
  border-bottom: 1px solid var(--dlight);
}

.o--section-item .item--head {
  display:flex;
  flex-wrap:wrap;
  /*justify-content: space-between;*/
  margin-bottom: 10px;
}

.o--section-item .item--head .head--company {
  order:0;
  font-weight: 600;
  font-size:18px;
}

.o--section-item .item--head .head--position {
  order:2;
  width:100%;
  color:var(--gold);
  font-size:14px;
}

.o--section-item .item--head .head--date {
  order:1;
  background: var(--dark);
  padding:5px 10px;
  border-radius: 10px;
  font-size:14px;
  transform: translatey(-3px);
  margin-left:15px;
}

.o--section-item .item--body {
  font-size:14px;
  color:var(--normal);
}

.site-content--side {
  width: 350px;
}


.site-content--side .o--section-panel {
  padding:5px 15px;
  font-size:14px;
}

.site-footer {
  border-top:1px solid var(--dlight);
  padding-top:15px;
  font-size:14px;
  margin-top:auto;
}






/* graph */
.o--graphs {
  margin-bottom: 25px;
}
.o--graph {
  margin-bottom: 15px;
}
.o--ghead {
  display:flex;
  justify-content: space-between;
}
.o--gpercent {
  font-size:12px;
}


.o--bar {
  background:var(--dark);
}

.o--bar-cat {
  border-bottom: 1px solid var(--dlight);
}

.o--bar .o--bar-percent {
  opacity:0.7;
  background:var(--gold);
  height:5px;
  width: 0; /* will be set via JS */
  transition: width 0.4s ease-in-out;
}


@media only screen and (max-width: 1440px) {
  .site-container {
    max-width:1060px;
  }
  .site-intro {
    width:55%;
  }
  .site-intro--a {
    font-size: 30px;
  }
}

@media only screen and (max-width: 1140px) {
  .site-container {
    max-width:960px;
  }
  .site-intro--b {
    line-height: 1.2;
  }

  .site-heading-extras {
    gap:10px;
    padding:0.8% 1.2%;
  }
}

@media only screen and (max-width: 1024px) {
  .site-container {
    max-width:708px;
  }



  .site-intro--a {
    font-size: 20px;
  }
  .site-intro--b {
    font-size:12px;
  }


  .site-heading-extras {
    gap:10px;
    padding:0.4% 1.2%;
    font-size:12px;
  }

  .site-content--row {
    width:100%;
    flex-direction: column;
  }

  .site-content--core {
    width:100%;
  }


  .site-content--side {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .wrapper {
    padding:30px 0;
  }
  .site-container {
    max-width:100%;
  }
  .site-heading {
    display:flex;
    align-items: center;
    gap:20px;
    flex-wrap:wrap;
  }
  .site-heading img {
    display: block;
    width: 200px;
    height: 200px;
    background-position: 80% 50% !important;
    border-radius: 100%;
  }

  .site-intro {
    position: static;
    width:calc(100% - 220px);
    transform: translateY(0%);
  }
  .site-heading-extras {
    position:static;

  }


  h1 { font-size:30px; }
  h2 { font-size:26px; }
  h3 { font-size:22px; }
  h4 { font-size:18px; }
  h5 { font-size:13px; }
  h6 { font-size:12px; }

  .o--section > h3 {
    font-size:18px;
  }
  .o--section > h3::before {
    height:20px;
    width:20px;
  }
  .o--section-item .item--head .head--company {
    font-size:15px;
  }
  .o--section-item .item--head .head--date {
    margin-left:0;
    margin-top:10px;
    order:3;
  }
}

@media only screen and (max-width: 568px) {
  .site-sidebar {
    width:60px;
  }


  .site-intro {
    width:100%;
  }

  .site-body {
    width: calc(100% - 100px);
  }
}