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: 5px;
}
.home-footer {
    background-color: #001f47;
    color: #ffffff;
}

.home-footer-content {
    padding-top: 24px;
    padding-bottom: 20px;
    text-align: center;
}

.home-footer-logo {
    width: auto;
    max-width: 180px;
    height: auto;
}

.home-footer-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

    .home-footer-links a {
        color: #ffffff;
        text-decoration: none;
    }

        .home-footer-links a:hover {
            text-decoration: underline;
        }

.home-copyright {
    margin: 22px 0 0;
    color: #ffffff;
    font-size: 14px;
}

@media (max-width: 767px) {

    .home-footer-links {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
    }
}
.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    flex: 1 0 auto;
}

.home-footer {
    flex-shrink: 0;
}