﻿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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
footer {
    padding: 30px 0;
    background-color: #D1DB94;
    background: #58646d;
    color: #FFFFFF;
    line-height: 2rem !important;
}


.hero-fade {
    opacity: 0;
    animation: heroFadeIn 1.5s ease-in-out forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
.hero-kenburns {
    overflow: hidden;
    position: relative;
}

    .hero-kenburns img {
        animation: kenburnsMove 12s ease-in-out infinite;
        transform-origin: center;
    }

@keyframes kenburnsMove {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.15) translate(-5%, -5%);
    }

    100% {
        transform: scale(1) translate(0, 0);
    }
}

/* Increase banner height */
.hero-height {
    min-height: 300px; /* adjust as needed */
}

@media (min-width: 992px) {
    .hero-height {
        min-height: 400px; /* larger on desktop */
    }
}

.border-dark {
    border-color: #054e85 !important;
}
