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;
    background-color: #bfbfbf;
    color: #000000;
    font-family: 'Myriad Pro', sans-serif;
}

h1 h2 h3 {
    font-family: 'Myriad Pro Semi-bold', sans-serif;
}
h4 h5 h6 {
    font-family: 'Myriad Pro Regular', sans-serif;
}
p {
    font-family: 'Myriad Pro Light', sans-serif;
}
.alt-font {
    font-family: 'Arial', sans-serif;
}

:root {
    --bs-primary: #00467f;
    --bs-primary-rgb: 0, 70, 127;
    --bs-secondary: #b11116;
    --bs-secondary-rgb: 177,17,22;
}

/* jQuery Validation message colour */
.error {
    margin: 0 0 0 5px;
    padding-left: 3px;
    color: #F00;
    /*background-color: #FFF;*/
    font-size: small;
}
.btn-primary {
    background-color: #00467f;
}

.card{
    border:none;
}
/* Form Required indicator */
.required:after {
    content: " *";
    color: red;
}