/*html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a, .btn-link {
    color: #006bb7;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.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;
}

.content {
    padding-top: 1.1rem;
}

h1:focus {
    outline: none;
}*/

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

/* =============================== Above is from MudBlazor - DO NOT CHANGE ====================== */

/* =============================== Animations  ====================== */

@media (prefers-reduced-motion: no-preference) {
    section > img {
        transform: scale(0.8);
        opacity: 0;
        animation: fade-in linear forwards;
        animation-timeline: view();
        animation-range: entry 100px;
    }

    @keyframes fade-in {
        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    .home-menu {
        opacity: .5;
        animation: fade-in2 linear forwards;
        animation-timeline: scroll();
        animation-range-start: 0;
        animation-range-end: 500px;
        z-index: 1002 !important;
    }

    @keyframes fade-in2 {
        to {
            opacity: 1;
        }
    }
}

.project {
    max-height: 120px;
    transition: max-height 0.4s ease-out;
    overflow: hidden;
    cursor: pointer;
}

    .project:hover {
        max-height: 600px;
        transition: max-height 0.6s ease-in;
    }

/* =============================== Everything else  ====================== */

.header-spacer {
    margin-top: 56px;
}

.bg-maroon {
    background-color: #7c0044 !important;
    color: #EEE;
}

    .bg-maroon a, .bg-maroon a:visited {
        color: #EEE !important;
    }

        .bg-maroon a:hover {
            color: #b0a078 !important;
        }

.bg-maroon-50 {
    background-color: #7c0044 !important;
    color: #EEE;
}

    .bg-maroon-50 a, .bg-maroon-50 a:visited {
        color: #EEE !important;
    }

        .bg-maroon-50 a:hover {
            color: #b0a078 !important;
        }

.btn-maroon {
    background-color: #7c0044;
    color: #EEE;
}

    .btn-maroon:hover {
        background-color: #CCC;
        color: #333 !important;
    }

    .btn-maroon .mud-button-label {
        justify-content: normal;
    }

.bg-gold {
    background-color: #a48348 !important;
    color: #333;
}

.bg-light-gold {
    background-color: #a8996e !important;
    color: #333;
}

.bg-lightest-gold {
    background-color: #a8996e77 !important;
    color: #333;
}

.btn-gold {
    background-color: #a48348;
    color: #333;
}

    .btn-gold:hover {
        background-color: #333;
        color: #eee !important;
    }

    .btn-gold .mud-button-label {
        justify-content: normal;
    }

.text-maroon {
    color: #7c0044;
}

.text-gold {
    color: #a48348;
}

.text-dark-gold {
    color: #86713b;
}

.text-light-gold {
    color: #e4d7b5;
}

.text-light-gold-30 {
    color: #e4d7b596;
}

.text-med-gray {
    color: #CCC !important;
}

.text-gold-grad {
    background-image: linear-gradient(#e4d7b5, #86713b);
    color: transparent;
    background-clip: text;
}

.border-gold {
    border: solid 1px #86713b;
}

.bg-gray {
    background-color: #BBB;
}

.w-10 {
    width: 10%;
}

.w-15 {
    width: 15%;
}

.w-20 {
    width: 20%;
}

.w-30 {
    width: 30%;
}

.w-35 {
    width: 35%;
}

.w-40 {
    width: 40%;
}

.w-45 {
    width: 45%;
}

.w-55 {
    width: 55%;
}

.w-60 {
    width: 60%;
}

.w-65 {
    width: 65%;
}

.w-70 {
    width: 70%;
}

.w-80 {
    width: 80%;
}

.w-85 {
    width: 85%;
}

.w-90 {
    width: 90%;
}

.w-95 {
    width: 95%;
}

.home-nav-button {
    background-color: transparent !important;
}

.home-nav-link {
    color: #e4d7b5;
    font-size: 1.5em;
    opacity: 1 !important;
    text-decoration: none;
}

.home-nav-link a:hover {
    color: white;
    text-decoration: underline !important;
}

    .home-nav-link span {
        font-size: 1.5em;
    }

        .home-nav-link span:hover {
            color: white;
            font-size: 1.5em;
            text-decoration: underline;
        }


.home-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100vw;
    z-index: 1000;
}

.home-menu-sm {
    position: fixed;
    top: 44px;
    left: 0;
    width: 100vw;
    z-index: 1000;
    background-color: #7c0044 !important;
}

.main-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100vw;
    z-index: 1000;
}

.bg-aboutus {
    background-image: url("images/aboutus.png");
    background-position: left;
    background-repeat: no-repeat;
    height: 60vh;
}

.bg-history {
    background-image: url("images/history.png");
    background-position: left;
    background-repeat: no-repeat;
    height: 60vh;
}

.hero-text-history {
    color: rgba(228,215,181, .5);
    background-color: rgba(255,255,255,.2);
    width: 100%;
    font-size: 60px;
    position: absolute;
    top: 54vh;
    left: 0;
    z-index: 1001;
    font-family: 'Alex Brush', cursive !important;
}

.history-text-padding {
    padding-left: 15vw;
}

.bg-safety {
    background-image: url("images/safety2.png");
    background-position: left;
    background-repeat: no-repeat;
    height: 60vh;
}

.hero-text-safety {
    color: rgba(255,255,255,1);
    background-color: rgba(255,255,255,.2);
    width: 100%;
    font-size: 60px;
    position: absolute;
    top: 54vh;
    left: 0;
    z-index: 1001;
    font-family: 'Alex Brush', cursive !important;
}

.safety-text-padding {
    padding-left: 15vw;
}

.bg-staff {
    background-image: url("images/aboutus2.png");
    background-position: top left;
    background-repeat: no-repeat;
    height: 60vh;
    width: 100vw;
}

.bg-contact {
    background-image: url("images/contactus.png");
    background-position: top left;
    background-repeat: no-repeat;
    height: 60vh;
    width: 100vw;
}

.hero-text-contact {
    color: rgba(228,215,181, .5);
    background-color: rgba(255,255,255,.2);
    width: 100%;
    font-size: 60px;
    position: absolute;
    top: 54vh;
    left: 0;
    z-index: 1001;
    font-family: 'Alex Brush', cursive !important;
}

.contact-text-padding {
    padding-left: 50vw;
}

.about-us-square1 {
    position: absolute;
    top: 40vh;
    left: 80vw;
    height: 150px;
    width: 150px;
    background-color: #7c0044;
    z-index: 1000;
}

.about-us-square2 {
    position: absolute;
    top: 42vh;
    left: 79vw;
    height: 150px;
    width: 150px;
    background-color: #a48348;
    z-index: 1001;
}

.about-us-hero-text {
    color: #7c0044;
    background-color: rgba(255,255,255,.2);
    width: 100%;
    font-size: 40px;
    position: absolute;
    top: 54vh;
    left: 0;
    z-index: 1001;
}

.hero-text2 {
    color: rgba(228,215,181, .5);
    background-color: rgba(255,255,255,.2);
    width: 100%;
    font-size: 60px;
    position: absolute;
    top: 54vh;
    left: 0;
    z-index: 1001;
    font-family: 'Alex Brush', cursive !important;
    /*color: #a48348;*/
}

.hero-vert-bar1 {
    background-color: rgba(255,255,255,.4);
    width: 10px;
    height: 60vh;
    position: absolute;
    top: 129px;
    left: 80vw;
}

.hero-vert-bar2 {
    background-color: rgba(255,255,255,.4);
    width: 10px;
    height: 60vh;
    position: absolute;
    top: 129px;
    left: 81vw;
}

.hero-vert-bar3 {
    background-color: rgba(255,255,255,.4);
    width: 10px;
    height: 60vh;
    position: absolute;
    top: 129px;
    left: 82vw;
}

.balanced-heading {
    text-wrap: balance;
}

.pre-wrap {
    white-space: pre-wrap;
}

.beveled {
    clip-path: polygon(90% 0, 100% 10%, 100% 100%, 0 100%, 0 0);
    min-height: 60vh;
    background-color: #e4d7b577;
}

    .beveled.light {
        background-color: #fafafa;
        border: 1px solid #DDD;
        height: 100%
    }

.project-padding {
    padding-left: 4vw !important;
    margin-right: 4vw !important;
    padding-bottom: 4vh !important;
}

.align-right input {
    text-align: right;
    padding-right: 40px !important;
}

.pointer {
    cursor: pointer;
}

.image-selected {
    margin-bottom: -32px;
    position: relative;
    top: 20px;
    left: 84%;
    height: 32px;
    width: 32px;
    background-color: #fff;
    border-radius: 50%;
    border: solid 1px #7c0044;
    display: inline-block;
    z-index: 100000;
}

.checkmark {
    display: inline-block;
    transform: rotate(45deg);
    height: 20px;
    width: 12px;
    margin-top: 4px;
    margin-left: 34%;
    border-bottom: 6px solid #78b13f;
    border-right: 6px solid #78b13f;
    z-index: 100001;
}

.ml-auto > .mud-input-control-input-container {
    margin-left: auto;
}

.text-end > .mud-input-control-input-container input {
    text-align: right;
    margin-right: 20px;
}

.centered > .mud-input-control-input-container {
    margin-left: auto;
    margin-right: auto;
}

.news-header {
    background-color: #c7dde2;
}

.captcha div {
    margin-left: auto !important;
    margin-right: auto !important;
}

.logo-spacer {
    margin-top: 0;
    z-index: 20000;
    position: absolute;
}

.logo {
    position: fixed;
    top: 15px;
    left: 50px;
    z-index: 2000;
}

.staff-border {
    border: 1px solid #333;
}

.offset-menu {
    padding-top: 65px;
}

.admin-bar {
    z-index: 20022;
}

.text-gray {
    color: #333;
}

.text-light-gray {
    color: #777;
}


.font-size-125 {
    font-size: 2.5em;
}

.hover-border img:hover {
    padding: 2px 2px 2px 2px;
    border: 1px solid #7c0044;
}

/**{
    border: 1px solid red;
}*/
