html{
   background: url(/static/images/bg.jpg) top center repeat #d9d9d9;
}

body{
 margin: 0;
}

html, body, div{
 margin: 0 0px;
 padding: 0;
 text-rendering: optimizeLegibility;
 text-rendering: geometricPrecision;
 font-smooth: always;
 font-smoothing: antialiased;
 -moz-font-smoothing: antialiased;
 -webkit-font-smoothing: antialiased;
 -webkit-font-smoothing: subpixel-antialiased;
}

.container{
 padding: 10px;
}

#nav-header{
 background: #2a2a2a;
 width: 100%;
}


nav {
 display: flex;
 flex-wrap: nowrap;
}
nav .logo img {
 width: 50px;
 height: 50px;
}
nav ul.menu{
 font-size: 17px;
 z-index: 999;
}
nav ul {
 display: inline-flex;
}
nav ul li {
 position: relative;
 list-style-type: none;
}
nav ul li a {
 padding: 10px;
 text-decoration: none;
 display: flex;
 transition: all 0.2s ease-in-out;
 color: #ffffff;
}
nav>ul>li a {
 line-height: 20px;
}

nav ul li > ul {
 display: none;
 border: 1px solid #f1f1f1;
 position: absolute;
 padding: 0;
 transition: all 0.3s ease-in-out;
 left: 10px;
 top: 35px;
 background: white;
}
nav ul li > ul li a{
 color: #000000;
}
nav ul li:hover > ul {
 display: block;
}
nav ul li > ul li ul {
 left: 100%;
 top: 0;
}
nav ul li.sub-menu:before {
 content: "";
 font-family: "Font Awesome 5 Free";
 font-weight: 900;
 position: absolute;
 line-height: 45px;
 right: -10px;
 color: #ffffff;
}
nav ul li.sub-menu > ul {
 font-size: 15px;
 width: 200%;
}
nav .menu-toggle {
 font-size: 24px;
 cursor: pointer;
 display: none;
 padding: 20px;
 color: #ffffff;
}


.tabs {
 display: flex;
 flex-wrap: wrap;
 background: #c9c9c9;
}

.tabs__label {
 text-decoration: none;
   color: #000000;
   font: 16px / 1 'Roboto Condensed', sans-serif;
   text-transform: none;
   padding: 12px 16px;
   line-height: 19px;
   border: 1px solid #9d9d9d;
   position: relative;
   z-index: 2;
   top: -1px;
   margin-bottom: -1px;
   margin-right: -1px;
   background: #c9c9c9;
   border-bottom: 1px solid #e2e2e3;
   font-weight: bold;
   letter-spacing: -.6px;
   white-space: nowrap;
   border-top: none;
   cursor: pointer;
}

.tabs__radio {
 display: none;
}

.tabs__content {
 order: 1;
 width: 100%;
 display: none;
 background: white;
 padding: 1.5vw 2vw;
 overflow: hidden;
}

.tabs__radio:checked + .tabs__label {
 color: #000;
 background: #fff;
 border-bottom: 2px solid #fff;
}

.tabs__radio:checked + .tabs__label + .tabs__content {
 display: initial;
}

::-webkit-scrollbar-track-piece {
 -webkit-border-radius: 0;
}

::-webkit-scrollbar-thumb {
 height: 30px;
 background-color: #bbb;
 -webkit-border-radius: 2px;
 outline: 2px solid transparent;
 outline-offset: -2px;
 border: 2px solid transparent;
}

::-webkit-scrollbar {
 width: 8px;
 height: 8px;
}


@media (max-width: 768px) {
 nav ul {
   width: 100%;
   top: 48px;
   position: absolute;
   display: none;
   transform: translateY(-100%);
   transition: transform 200ms linear;
   background: #f3f3f3;
 }
 nav ul li.sub-menu > ul{
   background: #f3f3f3;
 }
 nav ul li a {
   text-decoration: none;
   border-bottom: 1px solid rgba(0, 0, 0, 0.2);
 }
 nav ul li:hover > ul {
   display: block;
   position: relative;
   transform: none;
   transition: none;
   top: 100%;
   left: 0;
 }
 nav ul li ul li {
   width: 100%;
   border-bottom: 1px solid rgba(0, 0, 0, 0.2);
 }
 nav ul li ul li a{
   padding-left: 50px;
   border: 0;
 }
 nav .menu_open {
   display: block;
   transform: translateY(0);
   background: #c9c9c9;
   padding: 0;
 }
 nav .menu_open a{
   color: #000000;
   line-height: 48px;
 }
 nav .menu-toggle {
   display: block;
 }
}

@media only screen and (min-width: 1000px){
 .container{
   padding: 30px;
 }
}
