@font-face{
    font-family: 'Comfortaa';
    src: url('/fonts/SIFONN_PRO.otf');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: 'Comfortaa';
    src: url('/fonts/Comfortaa-Bold.ttf');
    font-weight: bold;
    font-style: normal;
}

body{
    margin: 0;
    padding: 0;
    font-family: 'Comfortaa';
}
header{
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 100px;
    background: #262626;
    width: 100%;
    box-sizing: border-box;
}
header .logo{
    color: #fff;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    float: left;
    font-weight: normal;
}
header nav{
    float: right;
}
header nav ul{
    margin: 0;
    padding: 0;
    display: flex;
}
header nav ul li{
    list-style: none;
}
header nav ul li a{
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
    color: #fff;
    text-decoration: none;
    display: block;
    font-size: 14px;
}
header nav ul li a:hover{
    color: #fff;
    background: #1e81e0f7;
    text-decoration: none;
}
.menu-toggle{
    color: #fff;
    float: right;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none;
}
@media (max-width: 991px){
    header{
        padding: 0 20px;
    }
    .menu-toggle{
        display: block;
    }
    header nav{
        position: absolute;
        width: 100%;
        height: calc(100vh - 50px);
        background: #333;
        top: 50px;
        left: -100%;
        transition: 0.5s;
    }
    header nav.active{
        left: 0;
    }
    header nav ul{
        display: block;
        text-align: center;
    }
    header nav ul li a{
        border-bottom: 1px solid rgba(0, 0, 0, .2);
    }
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}
  
.sticky + .content {
padding-top: 60px;
}
#navbar {
    overflow: hidden;
    background-color: #333;
}
.row{
 margin-left: 0px !important;
 margin-right: 0px !important;
}
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }