html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

#nav {
    position: fixed;
    width: 200px;
    z-index: 1000;
    left: 0;
    top: 100px;
    border-right: 1px solid #162636;
    height: 100%;
}

.parallax {
    background-image: url('/images/sentrax_bg01a.png');
    height: 1080px; /* Adjust as needed */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #258cfb;
    background-clip: revert;
    
}

@keyframes bgFade {
    from {
        background-color: transparent;
    }

    to {
        background-color: rgba(194, 219, 254, 1.0);
    }
}

#btn-back-to-top {
    position: fixed;
    bottom: 65px;
    right: 20px;
    display: none;
}
