﻿/*---------------------------------------------------------- */
/* Custom Properties                                         */
/*---------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,600,700,800,900");

:root {
    /* colors  */
    --clr-dark: 217 61% 19%;
    --clr-light: 222 29% 39%;
    --clr-white: 0 0% 100%;
    /* Maryland colors  */
    --maryland-primary: #C8122C;
    --maryland-secondary: #1E1E1E;
    --maryland-highlight: #FFC838;
    /* font-sizes  */
    --fs-900: 9.375rem;
    --fs-800: 6.25rem;
    --fs-700: 3.5rem;
    --fs-600: 2rem;
    --fs-500: 1.75rem;
    --fs-400: 1.125rem;
    --fs-300: 1rem;
    --fs-200: 0.875rem;
    /* font-families  */
    --font-family-sans-serif: "Montserrat", sans-serif;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/*---------------------------------------------------------- */
/* Reset                                                    */
/*---------------------------------------------------------- */

/* https://piccalil.li/blog/a-modern-css-reset/ */

/* Box sizing    */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

/* Reset margins   */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
picture {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-weight: 400;
}

html {
    display:block;
}

/*---------------------------------------------------------- */
/* Utility classes                                           */
/*---------------------------------------------------------- */

.flex {
    display: flex;
    gap: var(--gap, 1rem);
}

.flex-gap {
    display:inline-flex;
    gap:10px;
}

.grid {
    display: grid;
    gap: var(--gap, 1rem);
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    text-align: left;
    background-color: #403f3f;
}

/*---------------------------------------- */
/* colors                                   */
/*---------------------------------------- */

.bg-dark {
    background-color: hsl( var(--clr-dark));
}

.bg-accent {
    background-color: hsl( var(--clr-light));
}

.bg-white {
    background-color: hsl( var(--clr-white));
}

.text-dark {
    color: hsl( var(--clr-dark));
}

.text-accent {
    color: hsl( var(--clr-light));
}

.text-white {
    color: hsl( var(--clr-white));
}

/*---------------------------------------- */
/* Typography                              */
/*---------------------------------------- */

.ff-serif {
    font-family: var(--ff-serif);
}

.ff-sans-cond {
    font-family: var(--ff-sans-cond);
}

.ff-sans-normal {
    font-family: var(--ff-sans-cond);
}

.letter-spacing-1 {
    letter-spacing: 4.75px;
}

.letter-spacing-2 {
    letter-spacing: 2.7px;
}

.letter-spacing-3 {
    letter-spacing: 2.35px;
}

.letter-weight{
    font-weight:bold;
}

.block-spacing{
    margin-top:20px;
    margin-bottom:20px;
}

.uppercase {
    text-transform: uppercase;
}

.fs-900 {
    font-size: var(--fs-900);
}

.fs-800 {
    font-size: var(--fs-800);
}

.fs-700 {
    font-size: var(--fs-700);
}

.fs-600 {
    font-size: var(--fs-600);
}

.fs-500 {
    font-size: var(--fs-500);
}

.fs-400 {
    font-size: var(--fs-400);
}

.fs-300 {
    font-size: var(--fs-300);
}

.fs-200 {
    font-size: var(--fs-200);
}

.fs-900,
.fs-800,
.fs-700,
.fs-600 {
    line-height: 1.1;
}

.numbered-title {
    font-family: var(--ff-sans-cond);
    font-size: var(--fs-500);
    text-transform: uppercase;
    letter-spacing: 4.72px;
}

    .numbered-title span {
        margin-right: .5em;
        font-weight: 700;
        color: hsl( var(--clr-white) / .25);
    }

.main{
    background-color:white;
}
.topHeader{
    background-color:white;
    margin:auto;
    border-bottom:1px solid black;
    padding-bottom:2rem;
    
}
.topHeader img {
    /*width:100%;*/
    height:auto;
    min-width: 100px;
}
.logo{
    background-color:white;
    margin-top:2rem;
    margin-bottom:2rem;
}
/* Style the list */
ul.breadcrumb1 {
    padding: 10px 16px;
    list-style: none;
    background-color: #eee;
}

    /* Display list items side by side */
    ul.breadcrumb1 li {
        display: inline;
        font-size: 18px;
    }

        /* Add a slash symbol (/) before/behind each list item */
        ul.breadcrumb1 li + li:before {
            padding: 8px;
            color: black;
            content: "/\00a0";
        }

        /* Add a color to all links inside the list */
        ul.breadcrumb1 li a {
            color: #0275d8;
            text-decoration: none;
        }

            /* Add a color on mouse-over */
            ul.breadcrumb1 li a:hover {
                color: #01447e;
                text-decoration: underline;
            }

.form-submit-button {
    background: #0066A2;
    color: white;
    border-style: outset;
    border-color: #0066A2;
    height: 50px;
    width: 100px;
    font: bold15px arial,sans-serif;
    text-shadow: none;
}

.aspNetDisabled {
    background: #ddd
}

.login {
    margin: auto;
    border: 1px solid #ddd;
    width: 500px;
}

.login-banner {
  /* min-height:50px;*/
   padding:10px;
   margin-top:5px;
   align-content:center;
}
.img {
    display: block;
    padding: 20px;
}

.card{
    margin-bottom:30px;
    border:1px solid grey;
    width:300px;
    padding: 0.5rem;
    align-items:center;
    border-radius:5px;
}

.box{
    width:100%;
    padding:10px;
    /*background-color:lightgrey;*/
    height:auto;
}

.center-content{
    text-align:center;
}

.spacing{
    margin-right:10px;
}

.topic-spacing{
    margin:20px 20px;
   
}

.validation {
    font-weight: bold;
    color: red;
}

.grid-container {
    min-height:60px;
    display: grid;   
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(60px, auto);
    gap:3rem;

}

.columns{
    column-count:2;
}

.footer {
    clear:both;   
    background-color: #C8122C;
    width:100%;
    text-align:center;
    margin-top:50px;
   /* padding:-20px;*/
   
}

    .footer a:link, a:visited {
        text-decoration: none;
        color: white;
    }
.surveyMenu {
    width: 100%;
    text-align: center;
    float: right;
    height:auto;
}
.tableNav {
    display: inline-block;
    margin-right: 2.25em;
}

/*---------------------------------------- */
/* Form Controls                           */
/*---------------------------------------- */
.textbox-width {
    width:100px;

}

/*---------------------------------------- */
/* footer from DoIT new template                             */
/*---------------------------------------- */
.bg-darkgray {
    background-color: #4d4d4d !important;
}

.bg-lightyellow {
    background-color: #ffdfa2 !important;
}

.text-white, .mdgov-marketingIntro {
    color: #fff !important;
}

.mdgov-governorPanel {
    background-image: url("../img/md-flag-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

    .mdgov-governorPanel a {
        display: flex;
        align-items: flex-end;
        height: 100%;
    }

        .mdgov-governorPanel a img {
            width: 100%;
        }

.mdgov-csp h2, .mdgov-csp h3, .mdgov-csp h4 {
    color: #000000;
}

.mdgov-csp__col1 {
    text-align: center;
}

    .mdgov-csp__col1 img {
        width: 150px;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

.mdgov-csp__col2 h2 {
    margin-top: 0;
}

.mdgov-csp__col2 p {
    margin-top: 0;
}

.mdgov-footer {
    clear: both;
    max-width: 1920px;
    margin: 0 auto;
}

.mdgov-fixed + .mdgov-footer {
    max-width: 1200px;
}

.mdgov-footer__top {
    background-color: #f8f9fa;
    clear: both;
    max-width: 1920px;
    margin: 0 auto;
}

    .mdgov-footer__top hr {
        align-self: center;
        background-color: #085148;
        padding: 0;
        margin: 0;
        border: 0;
        height: 1px;
    }

@media (max-width: 991.98px) {
    .mdgov-footer__top hr {
        display: none;
    }
}

.mdgov-footer__middle, .mdgov-footer__bottom {
    text-align: center;
    clear: both;
    background-color: #C8122C;
}

    .mdgov-footer__middle h2, .mdgov-footer__bottom h2 {
        font-size: 1.3rem;
        margin: 0;
    }

    .mdgov-footer__middle *, .mdgov-footer__bottom * {
        color: #ffffff;
    }

    .mdgov-footer__middle a, .mdgov-footer__bottom a {
        text-decoration: underline;
    }

        .mdgov-footer__middle a:hover,
        .mdgov-footer__middle a:focus, .mdgov-footer__bottom a:hover,
        .mdgov-footer__bottom a:focus {
            color: #ffffff;
        }

.mdgov-footer__middle {
    padding: 1rem 1rem 0 1rem;
}

@media (min-width: 768px) {
    .mdgov-footer__middle {
        padding: 2rem 2rem 0 2rem;
    }
}

.mdgov-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 1rem 6rem 1rem;
}

@media (min-width: 768px) {
    .mdgov-footer__bottom {
        padding: 2rem 2rem 7rem 2rem;
    }
}

.mdgov-footer__copyright {
    margin-top: 0;
}

.mdgov-footer__contacts {
    text-align: center;
    margin: 0 auto;
}

.mdgov-footer__nav {
    width: 100%;
    padding: 0;
    margin-top: 0;
    margin-bottom: 2rem;
    list-style: none;
}

@media (max-width: 767.98px) {
    .mdgov-footer__nav {
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .mdgov-footer__nav {
        text-align: right;
    }

        .mdgov-footer__nav li {
            display: block;
            margin-right: 1.5rem;
        }

            .mdgov-footer__nav li:last-child {
                margin: 0;
            }

        .mdgov-footer__nav li {
            display: inline-block;
        }
}


