* {
    font-family: 'Roboto';    
}

html {
    scroll-behavior: smooth;
}

.nav-item {
    font-weight: 500;
    margin: 0 5px;    
}

.footer-basic {
    height: 100%;
    padding: 20px 0 10px 0;
    background-color: rgba(18, 18, 18, 0.91);
}

.footer-links {
    font-weight: 500;
    color: #131313;
    position: relative;
    text-decoration: none;
    transition: color .4s ease-out;
}

.footer-links:hover {
    color: #457DFB;
    text-decoration: none;
}

.footer-links:hover::after {
    border-color: #457DFB;
    right: 0;
}

.footer-links::after {
    border-radius: 1em;    
    border-top: .15em solid #2F56B0;
    content: "";
    position: absolute;
    right: 100%;
    bottom: -1px;
    left: 0;
    transition: right .4s cubic-bezier(0,.5,0,1),
                border-color .4s ease-out;
}

#contact_form .container {
  -webkit-box-shadow: 0px 0px 33px 0px rgba(143,143,143,0.33);
  -moz-box-shadow: 0px 0px 33px 0px rgba(143,143,143,0.33);
  box-shadow: 0px 0px 33px 0px rgba(143,143,143,0.33);
}

.login-clean {
    background: #f1f7fc;
    padding: 80px 0;
  }
  
  .login-clean form {
    max-width: 320px;
    width: 90%;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
    color: #505e6c;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
  }
  
  .login-clean .illustration {
    text-align: center;
    padding: 0 0 20px;
    font-size: 100px;
    color: #033ba3;
  }
  
  .login-clean form .form-control {
    background: #f7f9fc;
    border: none;
    border-bottom: 1px solid #dfe7f1;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    color: inherit;
    text-indent: 8px;
    height: 42px;
  }
  
  .login-clean form .btn-primary {
    background: #023186;
    border: none;
    border-radius: 4px;
    padding: 11px;
    box-shadow: none;
    margin-top: 26px;
    text-shadow: none;
    outline: none !important;
  }
  
  .login-clean form .btn-primary:hover, .login-clean form .btn-primary:active {
    background: #033ba3;
  }
  
  .login-clean form .btn-primary:active {
    transform: translateY(1px);
  }
  
  .login-clean form .forgot {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #6f7a85;
    opacity: 0.9;
    text-decoration: none;
  }
  
  .login-clean form .forgot:hover, .login-clean form .forgot:active {
    opacity: 1;
    text-decoration: none;
  }


/* The sidebar menu */
.sidenav {
  height: 100%; /* Full-height: remove this if you want "auto" height */
  width: auto; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: rgb(18, 18, 18); /* Black */
  overflow-x: hidden; /* Disable horizontal scroll */
  padding: 20px 10px;
}

/* The navigation menu links */
.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  color: #818181;
  display: block;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
  text-decoration: none;
  border-left: 1.5px solid #f0f0f0  ;
}

/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

.side-links {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  margin: 10px 0;
}

#filters .side-links {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  margin: 10px 0;
}

.main-page {
  height: 100vh;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #8f8f8f;
}